test(jest): update snapshots #622
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
- name: install | |
run: npm ci | |
# Building for the first time to make dep libs available for update | |
- name: update prep | |
run: npm run build | |
- name: install chromium | |
run: npm run chromium | |
- name: update | |
run: npm run update | |
# Actual build with updated fallback data | |
- name: build | |
run: npm run build | |
- name: publish | |
run: npx semantic-release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |