Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
Update package versions and fix error on new versions of Node.
  • Loading branch information
chase9 committed Sep 21, 2024
1 parent 6e5373e commit 81c54c0
Show file tree
Hide file tree
Showing 6 changed files with 911 additions and 755 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build # and test
Expand All @@ -31,8 +31,8 @@ jobs:
needs: build # only run if build succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16 # use the minimum required version
registry-url: https://registry.npmjs.org/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build # and test
Expand All @@ -35,8 +35,8 @@ jobs:
needs: build # only run if build succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16 # use the minimum required version
registry-url: https://registry.npmjs.org/
Expand Down
Loading

0 comments on commit 81c54c0

Please sign in to comment.