[Snyk] Security upgrade stylelint from 14.16.0 to 16.1.0 #492
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>" |