Skip to content

Commit

Permalink
Make main packages compatible with Node 20
Browse files Browse the repository at this point in the history
- Upgrade dependencies as required
- Update GitHub test workflows to use Node 20
  • Loading branch information
kvnlam committed May 2, 2024
1 parent 7bac815 commit 13b9891
Show file tree
Hide file tree
Showing 5 changed files with 11,751 additions and 8,866 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
working-directory: packages/quip-apps-api
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [20.11.1]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
- run: npm test
env:
CI: true
Expand All @@ -31,15 +31,15 @@ jobs:
working-directory: packages/quip-cli
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [20.11.1]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
- run: npm test
env:
CI: true
Expand Down Expand Up @@ -74,15 +74,15 @@ jobs:
working-directory: packages/quiptext
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [20.11.1]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
- run: npm test
env:
CI: true
Expand Down
Loading

0 comments on commit 13b9891

Please sign in to comment.