This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
chore: add deprecated alert #1024
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: Tests | |
on: | |
pull_request: | |
branches: [main, master] | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests-e2e: | |
name: E2E Tests (Disabled) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# - name: Setup Node | |
# uses: FuelLabs/github-actions/setups/node@master | |
# - name: Setup Docker | |
# uses: FuelLabs/github-actions/setups/docker@master | |
# with: | |
# username: ${{ github.repository_owner }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Start Test Node | |
# run: pnpm node:start | |
# # E2E tests running with Playwright | |
# - name: Install Playwright Browsers | |
# run: pnpm exec playwright install --with-deps chromium | |
# - name: Run E2E Tests | |
# run: xvfb-run --auto-servernum -- pnpm test:all | |
# env: | |
# NODE_ENV: test | |
# - uses: actions/upload-artifact@v2 | |
# if: always() | |
# with: | |
# name: playwright-report | |
# path: packages/app/playwright-report/ | |
# retention-days: 30 | |
# - name: Stop Test Node | |
# run: pnpm node:stop |