Skip to content

Bump tough-cookie from 4.1.2 to 4.1.3 #14

Bump tough-cookie from 4.1.2 to 4.1.3

Bump tough-cookie from 4.1.2 to 4.1.3 #14

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install pnpm
run: npm install pnpm -g
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run unit tests
run: pnpm test
- name: Run tsc
run: pnpm tsc
- name: Run Playwright tests
run: pnpm test:e2e
- uses: actions/upload-artifact@v2
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 5