Skip to content

Commit

Permalink
meta: run ci on node 18 (#305)
Browse files Browse the repository at this point in the history
- drop node 15 and 17 (#305 (comment))
  • Loading branch information
gamemaker1 authored Apr 24, 2022
1 parent 2b91eba commit c99ebae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Lint
strategy:
matrix:
node-version: [16.x]
node-version: [18]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true
Expand All @@ -29,7 +29,7 @@ jobs:
name: Test (Library)
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x, 17.x]
node-version: [12, 14, 16, 18]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true
Expand All @@ -48,7 +48,7 @@ jobs:
name: Test (External)
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x, 17.x]
node-version: [12, 14, 16, 18]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
continue-on-error: true
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit c99ebae

Please sign in to comment.