Skip to content

Commit

Permalink
github action updates. Try windows first
Browse files Browse the repository at this point in the history
  • Loading branch information
joeworkman committed Sep 27, 2024
1 parent 6ac0e28 commit 8a2dff3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20'] # latest (16+) not functional
node: ['22']
steps:
- uses: actions/checkout@v1
- name: install system dependencies
Expand All @@ -43,7 +43,7 @@ jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest, windows-latest, macos-latest]
node: [ '18', '20', '22' ]
name: Node ${{ matrix.node }} (${{ matrix.platform }})
runs-on: ${{ matrix.platform }}
Expand All @@ -53,12 +53,6 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install Google Chrome on macOS
if: runner.os == 'macOS'
run: brew install --cask google-chrome
- name: Install Google Chrome on Windows
if: runner.os == 'Windows'
run: choco install googlechrome
- name: install dependencies
run: yarn
- name: patch packages
Expand Down

0 comments on commit 8a2dff3

Please sign in to comment.