From 775f684f9c1dbe42a60ced352f7f97ead8d5b521 Mon Sep 17 00:00:00 2001 From: Dominik Zogg Date: Tue, 9 Jan 2024 21:12:41 +0100 Subject: [PATCH] test against node 20 --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d59e48c..c4f6872 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,18 @@ jobs: with: node-version: '18' - run: npm install + - run: npm test + node20: + name: Node 20 + runs-on: ubuntu-22.04 + steps: + - name: checkout + uses: actions/checkout@v3 + - name: checkout node + uses: actions/setup-node@v3 + with: + node-version: '20' + - run: npm install - run: npm run lint - run: npm run cs - run: npm test -- --coverage --no-cache