Skip to content

Commit 33ba457

Browse files
committed
Fix pages build
1 parent 7f28c10 commit 33ba457

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: ["16", "18", "20"]
8+
node: ["18", "20", "22"]
99
name: Node ${{ matrix.node }}
1010
steps:
1111
- name: Checkout repository

.github/workflows/pages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
- name: Set up Node
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: "16"
16+
node-version: "20"
1717
- name: Install
1818
run: npm ci
1919
- name: Build
2020
run: npm run build
2121
- name: Build docs
22-
run: npm run docs
22+
run: npm run docs -- src/testdata/infer.ts
2323
- name: Deploy
2424
uses: JamesIves/[email protected]
2525
with:

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: steps.check.outputs.changed == 'true'
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: "16"
23+
node-version: "20"
2424
- name: Install
2525
if: steps.check.outputs.changed == 'true'
2626
run: npm install

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)