fix(deps): update react monorepo to v18 #9886
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@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # 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 }} |