Skip to content

Commit

Permalink
ci: fix errors in ci github action for node 8 and 9
Browse files Browse the repository at this point in the history
  • Loading branch information
inigomarquinez authored May 5, 2024
1 parent ee91374 commit bd70fd1
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- 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 0.8
Expand Down Expand Up @@ -77,11 +80,11 @@ jobs:

- name: Node.js 8.x
node-version: "8.17"
npm-i: [email protected]
npm-i: [email protected] [email protected]

- name: Node.js 9.x
node-version: "9.11"
npm-i: [email protected]
npm-i: [email protected] [email protected]

- name: Node.js 10.x
node-version: "10.24"
Expand Down Expand Up @@ -117,8 +120,17 @@ jobs:
- name: Node.js 19.x
node-version: "19.7"

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

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

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

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

- name: Install Node.js ${{ matrix.node-version }}
shell: bash -eo pipefail -l {0}
Expand Down Expand Up @@ -209,7 +221,7 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install lcov
shell: bash
Expand Down

0 comments on commit bd70fd1

Please sign in to comment.