chore: use new deployement for testing #1517
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: Cypress | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn cache clean && rm -rf node_modules && yarn install --frozen-lockfile | |
- name: Build lib | |
run: yarn build | |
working-directory: ./lib | |
- name: Cypress install | |
uses: cypress-io/github-action@v6 | |
with: | |
runTests: false | |
# report machine parameters | |
- run: yarn cypress info | |
- run: node --version | |
- run: node -p 'os.cpus()' | |
- name: Run and record Cypress tests | |
run: yarn run cypress:ci | |
env: | |
CYPRESS_RECORD_KEY: ${{secrets.CYPRESS_RECORD_KEY}} |