E2E Prod tests #12233
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 Prod tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: '*/180 * * * *' | |
env: | |
ENV: prod | |
jobs: | |
test_smoke_prod: | |
strategy: | |
fail-fast: false | |
matrix: | |
instance: [mainnet, sepolia, gnosis, gnosis_chiado, optimism, astar, shiden, shibuya, rootstock, neon, neon_devnet, base, base_sepolia, athens_3, pegasus, phoenix, shimmer, shimmer_mainnet, immutable, shibarium_mainnet, shibarium_testnet, fuse, fuse_testnet, etc_mordor, etc, zk_sync, stability] | |
permissions: | |
id-token: write | |
contents: read | |
name: Smoke tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install deps | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Build contracts | |
working-directory: ./tests/contracts | |
run: | | |
# gyp build from root | |
npm config set user 0 | |
npm ci | |
npm run build | |
- name: Cache playwright binaries | |
uses: actions/cache@v2 | |
id: playwright-cache | |
with: | |
path: | | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-build-${{ env.cache-name }} | |
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }} | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Run playwright | |
run: | | |
npm run test:prod:smoke:${{ matrix.instance }} | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: report | |
path: tests/e2e/test-results | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./tests/e2e |