fix(deps): update dependency snyk to v1.1204.0 #9844
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: Percy Snapshots | |
on: push | |
jobs: | |
snapshot: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: Read .nvmrc | |
run: 'echo ::set-output name=NVMRC::$(cat .nvmrc)' | |
id: nvm | |
- name: Setup node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- uses: bahmutov/npm-install@v1 | |
- name: Percy Snapshots | |
run: npm run snapshot | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} |