Skip to content

feat: add epochs to stargate #275

feat: add epochs to stargate

feat: add epochs to stargate #275

Workflow file for this run

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