Skip to content

Commit

Permalink
fix!(ci): remove node < 18 from ci and update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Aug 23, 2024
1 parent d837e83 commit 9e9c309
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,30 @@ jobs:
strategy:
matrix:
name:
- Node.js 16.x
- Node.js 17.x
- Node.js 18.x
- Node.js 19.x
- Node.js 20.x
- Node.js 21.x
- Node.js 22.x

include:
- name: Node.js 16.x
node-version: "16.19"

- name: Node.js 17.x
node-version: "17.9"

- name: Node.js 18.x
node-version: "18.14"
node-version: "18"

- name: Node.js 19.x
node-version: "19.6"
node-version: "19"

- name: Node.js 20.x
node-version: "20.10"
node-version: "20"

- name: Node.js 21.x
node-version: "21.4"
node-version: "21"

- name: Node.js 22.x
node-version: "22"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Node.js ${{ matrix.node-version }}
shell: bash -eo pipefail -l {0}
Expand Down

0 comments on commit 9e9c309

Please sign in to comment.