Feat: Cid version param in useIpfs #589
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: E2E Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".nvmrc" | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.22" | |
- uses: cypress-io/github-action@v6 | |
with: | |
browser: chrome | |
build: make install-gno | |
start: | | |
yarn start --minify | |
make start.gnodev-e2e | |
wait-on: "http://localhost:8888, http://localhost:8081" | |
- name: Upload errors screenshots | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots |