Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix errors in ci github action for node 8 and 9 #523

Merged
merged 6 commits into from
Jun 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: remove minor versions
  • Loading branch information
inigomarquinez authored May 24, 2024
commit 682461e7726b3b3a90756bb60e0f7a98b93af1a6
42 changes: 21 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,80 +51,80 @@ jobs:
npm-i: [email protected] [email protected] [email protected]

- name: io.js 1.x
node-version: "1.8"
node-version: "1"
npm-i: [email protected] [email protected] [email protected]

- name: io.js 2.x
node-version: "2.5"
node-version: "2"
npm-i: [email protected] [email protected] [email protected]

- name: io.js 3.x
node-version: "3.3"
node-version: "3"
npm-i: [email protected] [email protected] [email protected]

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

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

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

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

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

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

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

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

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

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

- name: Node.js 14.x
node-version: "14.21"
node-version: "14"

- name: Node.js 15.x
node-version: "15.14"
node-version: "15"

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

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

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

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

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

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

- name: Node.js 22.x
node-version: "22"
Expand Down
Loading