Skip to content

Commit ee8357e

Browse files
Merge pull request #1069 from ChristianMurphy/chore/update-ci-and-dependencies
chore: update node versions in CI and update typescript tests
2 parents 8baaed6 + b354d7b commit ee8357e

6 files changed

Lines changed: 1259 additions & 1966 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,14 @@ jobs:
1111
matrix:
1212
platform: [ubuntu-latest, windows-latest, macos-latest]
1313
node-version:
14-
- 14
15-
- 16
1614
- 18
15+
- 20
16+
- 22
1717
runs-on: ${{ matrix.platform }}
1818
steps:
19-
- name: Checkout
20-
uses: actions/checkout@master
21-
- name: Set up Node.js
22-
uses: actions/setup-node@master
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2321
with:
2422
node-version: ${{ matrix.node-version }}
25-
- name: install
26-
run: npm install
27-
- name: test
28-
run: npm test
23+
- run: npm install
24+
- run: npm test

0 commit comments

Comments
 (0)