Skip to content

Commit

Permalink
remove playwright task
Browse files Browse the repository at this point in the history
  • Loading branch information
subject026 committed Oct 10, 2024
1 parent bda85da commit d7a28ae
Showing 1 changed file with 2 additions and 38 deletions.
40 changes: 2 additions & 38 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
workflow_dispatch:
pull_request:
branches: [main, development]
push:
branches: [main, development]

env:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: xxxx
Expand Down Expand Up @@ -59,41 +61,3 @@ jobs:

- name: Run build
run: CI=true pnpm build

test:
name: Playwright Tests
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.4

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install Dependencies
run: pnpm install

- name: Run build
run: CI=true pnpm build

- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps

- name: Run Playwright tests
run: CI=true pnpm run test

- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30

0 comments on commit d7a28ae

Please sign in to comment.