Skip to content

test(jest): update snapshots #622

test(jest): update snapshots

test(jest): update snapshots #622

Workflow file for this run

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 }}