Skip to content

Commit 8a2dff3

Browse files
committed
github action updates. Try windows first
1 parent 6ac0e28 commit 8a2dff3

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
node: ['20'] # latest (16+) not functional
31+
node: ['22']
3232
steps:
3333
- uses: actions/checkout@v1
3434
- name: install system dependencies
@@ -43,7 +43,7 @@ jobs:
4343
build:
4444
strategy:
4545
matrix:
46-
platform: [ubuntu-latest, macos-latest, windows-latest]
46+
platform: [ubuntu-latest, windows-latest, macos-latest]
4747
node: [ '18', '20', '22' ]
4848
name: Node ${{ matrix.node }} (${{ matrix.platform }})
4949
runs-on: ${{ matrix.platform }}
@@ -53,12 +53,6 @@ jobs:
5353
- uses: actions/setup-node@v1
5454
with:
5555
node-version: ${{ matrix.node }}
56-
- name: Install Google Chrome on macOS
57-
if: runner.os == 'macOS'
58-
run: brew install --cask google-chrome
59-
- name: Install Google Chrome on Windows
60-
if: runner.os == 'Windows'
61-
run: choco install googlechrome
6256
- name: install dependencies
6357
run: yarn
6458
- name: patch packages

0 commit comments

Comments
 (0)