chore(test): Unskip failing tx test #67
Workflow file for this run
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 tests | |
on: pull_request | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
container: | |
image: cypress/browsers:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
id: yarn-build-cache | |
with: | |
path: | | |
**/node_modules | |
~/.cache/Cypress | |
**/build | |
key: ${{ runner.os }}-node_modules-files-build-${{ hashFiles('./yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules-build- | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build plugin | |
working-directory: packages/plugin | |
run: yarn build | |
# Install NPM dependencies, cache them correctly | |
# and run all Cypress tests | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
working-directory: packages/example | |
start: yarn start | |
wait-on: 'http://localhost:3333' | |
# custom test command to run | |
command: yarn test:ci | |
# store the screenshots if the tests fail | |
# - name: Store screenshots | |
# uses: actions/upload-artifact@v1 | |
# if: failure() | |
# with: | |
# name: cypress-screenshots | |
# path: packages/example/cypress/screenshots | |
# # store the videos if the tests fail | |
# - name: Store videos | |
# uses: actions/upload-artifact@v1 | |
# if: failure() | |
# with: | |
# name: cypress-videos | |
# path: packages/example/cypress/videos |