From fd6d034440fd08fd9a97765c37152ecc5a6e7d5a Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Mon, 13 May 2024 21:37:24 +0200 Subject: [PATCH] [ci] Test on node 22 --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b13e4f9c..d8c35590 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: - 16 - 18 - 20 + - 22 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -23,10 +24,10 @@ jobs: node-version: ${{ matrix.node }} - run: npm install - run: npm run lint - if: matrix.node == 20 + if: matrix.node == 22 - run: npm test - run: npm run test:types - uses: coverallsapp/github-action@v2 - if: matrix.node == 20 + if: matrix.node == 22 with: github-token: ${{ secrets.GITHUB_TOKEN }}