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

Commit

Permalink
perf: added caching to the playwright tests github action
Browse files Browse the repository at this point in the history
  • Loading branch information
pajotg committed Apr 1, 2024
1 parent 3e67409 commit 35295c5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@ jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.42.1-jammy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
cache: yarn
cache-dependency-path: "yarn.lock"
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 35295c5

Please sign in to comment.