Skip to content

Commit

Permalink
chore: added Node 16 18 20 in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
srinathm85 committed Nov 8, 2023
1 parent 24f4646 commit be03764
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@ on:
push:
branches: ['*']
pull_request:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14']
node: [14.x,16.x,18.x,20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm i
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
"@types/node": "^14.14.16",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@xarc/module-dev": "^4.0.0",
"@xarc/run": "^1.0.4",
"@babel/eslint-parser": "^7.22.15",
Expand All @@ -94,7 +94,7 @@
"source-map-support": "^0.5.19",
"superagent": "^7.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc": "^0.24.8",
"typescript": "^5.0.0",
"xstdout": "^0.1.1"
},
Expand Down

0 comments on commit be03764

Please sign in to comment.