From 4678129bd02292916c5e9c62f3e8ee211990c6e1 Mon Sep 17 00:00:00 2001 From: simonhaenisch Date: Sat, 21 Sep 2024 10:36:51 +1200 Subject: [PATCH] chore(ci): run on node 22 --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3128946..0207d2e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] - node: [16, 18, 20] + node: [16, 18, 20, 22] runs-on: ${{ matrix.os }} @@ -15,10 +15,14 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} + - run: npm install + - run: npm run check-types + - run: npm test