Skip to content

Commit

Permalink
fix: require lts 16 due to openssl changes and webpack4 dep via vuepress
Browse files Browse the repository at this point in the history
  • Loading branch information
arirubinstein committed Feb 21, 2023
1 parent 35b9cf7 commit 3c4f558
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install and Build
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-snippets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Select a branch on agoric-sdk to test against by adding text to the body of the
# pull request. For example: #agoric-sdk-branch: zoe-release-0.7.0
Expand All @@ -35,14 +35,14 @@ jobs:
return agoricSdkBranch;
- name: Checkout agoric-sdk
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: Agoric/agoric-sdk
path: agoric-sdk
ref: ${{steps.get-branch.outputs.result}}

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
2 changes: 2 additions & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v16.19.1

1 change: 1 addition & 0 deletions .nvmrc
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": "Documentation of Agoric products",
"type": "module",
"engines": {
"node": ">=11.0"
"node": "^16"
},
"scripts": {
"docs:dev": "vuepress dev main",
Expand Down

0 comments on commit 3c4f558

Please sign in to comment.