forked from ajaxorg/treehugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate old node.js versions < v18
- New lock - Publish with Node v20 - Add node github workflow action
- Loading branch information
Showing
4 changed files
with
54 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Node CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [18.x, 19.x, 20.x, 21.x] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm install and test | ||
run: | | ||
npm install | ||
npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "@pylonide/treehugger", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "treehugger is a Javascript library for program processing", | ||
"author": "ajax.org B.V. <[email protected]>", | ||
"author": "Sten Feldman <[email protected]>", | ||
"license": "MIT", | ||
"contributors": [ | ||
"ajax.org B.V. <[email protected]>", | ||
{ | ||
"name": "Zef Hemel", | ||
"email": "[email protected]" | ||
|
@@ -24,7 +25,7 @@ | |
"url": "http://github.com/pylonide/treehugger.git" | ||
}, | ||
"engines": { | ||
"node": ">= 12.22.1" | ||
"node": ">= 18.18.2" | ||
}, | ||
"devDependencies": { | ||
"amd-loader": "~0.0.8", | ||
|