Skip to content

Update packages

Update packages #508

Workflow file for this run

name: Playwright
on:
push:
branches:
- dev
- 'test/*'
jobs:
test_e2e:
name: Test E2E
timeout-minutes: 60
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
# - name: Wait / Sleep Action
# if: !contains(github.event.head_commit.message , 'skip-wait')
# uses: GuillaumeFalourd/wait-sleep-action@v1
# with:
# time: '10m'
- name: Prepare testing env
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: yarn install --immutable
- run: npx playwright install --with-deps
- name: Run tests
env:
TEST_USERNAME: ${{ vars.USERNAME }}
TEST_PASSWORD: ${{ vars.PASSWORD }}
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30