Update how env variables are passed #14
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: Synpress tests | |
on: | |
push: | |
branches: [cent-app/synpress-testing-setup, 'main'] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: List directory | |
run: ls -la | |
working-directory: tests | |
- name: Synpress run | |
uses: cypress-io/github-action@v6 | |
with: | |
working-directory: tests | |
install-command: yarn | |
command: NETWORK_NAME=centrifuge RPC_URL=https://fullnode.development.cntrfg.com CHAIN_ID=2000 SYMBOL=DEVEL IS_TESTNET=true DEBUG=true CYPRESS_PRIVATE_KEY=${{secrets.CYPRESS_PRIVATE_KEY}} npm run e2e:run:ci | |
browser: chrome | |
config-file: synpress.config.js | |
ci-build-id: '${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}' | |
env: | |
# pass the Cypress Cloud record key as an environment variable | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
# pass GitHub token to allow accurately detecting a build vs a re-run build | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |