-
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 older node engines - Add node action for github workflows - Update to publish action to use node v20
- Loading branch information
Showing
4 changed files
with
57 additions
and
19 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/smith", | ||
"version": "0.1.24", | ||
"version": "0.2.0", | ||
"description": "Smith is an RPC agent system for Node.JS used in architect and vfs.", | ||
"author": "Ajax.org B.V. <[email protected]>", | ||
"author": "Sten Feldman <[email protected]>", | ||
"license": "MIT", | ||
"contributors": [ | ||
"Ajax.org B.V. <[email protected]>", | ||
{ | ||
"name": "Tim Caswell", | ||
"email": "[email protected]>" | ||
|
@@ -20,7 +21,7 @@ | |
}, | ||
"main": "smith.js", | ||
"engines": { | ||
"node": ">= 12.22.1" | ||
"node": ">= 18.18.2" | ||
}, | ||
"dependencies": { | ||
"msgpack-js": "~0.3.0" | ||
|