Skip to content

Commit

Permalink
ci: support node v14
Browse files Browse the repository at this point in the history
better long term support without breaking current build
  • Loading branch information
jacobtipp committed Feb 11, 2023
1 parent a222878 commit c6b4008
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/bloc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14
- run: npm install
- run: npm run test:prod
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion packages/bloc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
"node": ">=14.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
Expand Down

0 comments on commit c6b4008

Please sign in to comment.