chore(deps): update devdependencies #779
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install | |
run: | | |
npm install | |
- name: npm lint | |
run: | | |
npm run lint | |
- name: npm build | |
run: | | |
npm run build | |
- name: npm test | |
run: | | |
npm test | |
env: | |
FORCE_COLOR: 1 | |
JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE: 1 | |
- name: Upload failed screenshot tests | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: screenshots-${{ matrix.runs-on }} | |
path: test/__image_snapshots__/__diff_output__/* | |
- name: Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.github_token }} | |
continue-on-error: true | |
- name: npm publish | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN | |
npm run trypublish | |
env: | |
CI: true | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |