feat: handle call canister on the signer #19
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: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare Lib | |
uses: ./.github/actions/prepare | |
- name: Prepare Demo | |
uses: ./.github/actions/prepare | |
with: | |
folder: 'demo' | |
- name: Setup E2E Environment | |
uses: ./.github/actions/setup-e2e-env | |
- name: Run tests | |
run: | | |
cd demo | |
juno dev start --headless & | |
cd .. | |
npm run e2e:ci | |
- uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
may-merge: | |
needs: ['e2e'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleared for merging | |
run: echo OK |