Skip to content

Commit

Permalink
Simplify CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed Nov 18, 2024
1 parent 7f08b2d commit eddfe89
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,13 @@ on:
jobs:

test_node:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [ '14', '21' ]
os: [ windows-latest, ubuntu-latest ]
name: Test with Node v${{ matrix.node }} on ${{ matrix.os }}
runs-on: ubuntu-latest
name: Test with Node
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: 22
- uses: bahmutov/npm-install@v1
- run: yarn build
env:
Expand All @@ -33,7 +29,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '15'
node-version: 22
- name: Cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit eddfe89

Please sign in to comment.