Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

chore: add deprecated alert #1023

chore: add deprecated alert

chore: add deprecated alert #1023

Workflow file for this run

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