Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/verify-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: npm

- name: Install Playwright dependencies
run: npx playwright install --with-deps

# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2

Expand All @@ -54,6 +51,9 @@ jobs:
- name: Build specific packages for production
run: npm run build:production

- name: Install Playwright dependencies
run: npx playwright install --with-deps

- name: Test
run: npm run test:node

Expand All @@ -77,9 +77,6 @@ jobs:
node-version: '20'
cache: 'npm'

- name: Install Playwright dependencies
run: npx playwright install --with-deps

# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2

Expand All @@ -93,5 +90,8 @@ jobs:
- name: Build specific packages for production
run: npm run build:production

- name: Install Playwright dependencies
run: npx playwright install --with-deps

- name: Test
run: npm run test:node
Loading