Skip to content

Commit

Permalink
chore(ci): drop support for nodejs 15.x or older
Browse files Browse the repository at this point in the history
  • Loading branch information
victorperin committed Jan 11, 2024
1 parent 8a5bb1b commit fd721e8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docs.yml
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout project
uses: actions/checkout@v3

- name: Use NodeJS 15.x
- name: Use NodeJS 16.x
uses: actions/setup-node@v3
with:
node-version: 15.x
node-version: 16.x

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-release.yml
Expand Up @@ -14,10 +14,10 @@ jobs:
- name: Checkout project
uses: actions/checkout@v3

- name: Use NodeJS 15.x
- name: Use NodeJS 16.x
uses: actions/setup-node@v3
with:
node-version: 15.x
node-version: 16.x

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x, 18.x, 16.x, 15.x, 14.x, 12.x]
node-version: [21.x, 20.x, 18.x, 16.x]

steps:
- name: Begin Check...
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -91,6 +91,6 @@
]
},
"engines": {
"node": ">=12"
"node": ">=16"
}
}

0 comments on commit fd721e8

Please sign in to comment.