Use account index 1 for ledger #124
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: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "*.md" | |
- LICENSE | |
- "*.yaml" | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "*.md" | |
- LICENSE | |
- "*.yaml" | |
jobs: | |
e2e: | |
name: Run e2e tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Run e2e tests | |
run: npm run cy:ci | |