Skip to content

5.6.0

5.6.0 #7

Workflow file for this run

name: build
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test:coverage
- run: npm run build
- if: ${{ github.event_name == 'push' && startsWith(matrix.node-version, '18.') }}
name: Publish code coverage
uses: codecov/codecov-action@v2
# with:
# verbose: true
- if: ${{ github.event_name == 'push' && github.ref_name == 'main' && startsWith(matrix.node-version, '18.') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- if: ${{ github.event_name == 'push' && github.ref_name == 'main' && startsWith(matrix.node-version, '18.') }}
name: Publish styleguide
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run doc:deploy -- --user "github-actions-bot <support+actions@github.com>"