Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
update node version to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmobile committed Dec 8, 2023
1 parent 580ca61 commit 4165923
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
# - name: Run tests
# run: npm run test
# - name: Run tests
# run: npm run test
- name: Build library
run: npm run build
- name: Generate documentation
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
# - name: Run tests
# run: npm run test
# - name: Run tests
# run: npm run test
- name: Build library
run: npm run build
- name: Generate documentation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Extension for js-log, that writes to Mongo databases.",
"main": "lib/index.js",
"engines": {
"node": ">=12.0.0"
"node": ">=16.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
Expand Down

0 comments on commit 4165923

Please sign in to comment.