Skip to content

Commit 1d5afee

Browse files
Copilotdgreif
andcommitted
Remove matrix strategy and Playwright install steps from workflows
Co-authored-by: dgreif <3026298+dgreif@users.noreply.github.com>
1 parent 5d11c2b commit 1d5afee

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,12 @@ on: [push, pull_request]
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
node-version: [22, 24]
1310
steps:
1411
- uses: actions/checkout@v4
1512
- uses: actions/setup-node@v4
1613
with:
17-
node-version: ${{ matrix.node-version }}
14+
node-version: 24
1815
cache: npm
19-
- name: Install Playwright browsers
20-
run: npx playwright install --with-deps chromium
2116
- name: npm install, build, and test
2217
run: |
2318
npm install

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
node-version: 24
1919
registry-url: https://registry.npmjs.org/
2020
cache: npm
21-
- run: npx playwright install --with-deps chromium
2221
- run: npm ci
2322
- run: npm test
2423
- run: npm version ${TAG_NAME} --git-tag-version=false

0 commit comments

Comments
 (0)