Skip to content

Commit

Permalink
chore: require Node.js 14+ & CI use Node.js 16 (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin authored Jun 15, 2022
1 parent 1d4186f commit 800089a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
- name: Cache NPM dependencies
uses: actions/cache@v1
with:
Expand All @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ['10.x', '12.x', '14.x']
node-version: ['14.x', '16.x', '18.x']
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14
- name: Use Node.js v16
uses: actions/setup-node@v1
with:
node-version: '14'
node-version: '16'
- run: npm install
- name: Create Pages
run: npm run jsdoc
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
"sinon": "^13.0.2"
},
"engines": {
"node": ">=10.13.0"
"node": ">=14"
}
}

0 comments on commit 800089a

Please sign in to comment.