feat: add epochs to stargate #275
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: Playwright Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16.x" | |
- run: pnpm install | |
- run: pnpm dlx playwright install --with-deps | |
- run: pnpm build --filter=@sifchain/dex | |
- run: pnpm e2e | |
env: | |
COSMOS_MNEMONIC: ${{ secrets.COSMOS_TEST_MNEMONIC }} | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |