From 8570d1d67c2a05d6ac9c16073dd35eec22eca0b8 Mon Sep 17 00:00:00 2001 From: Andreas Lind Date: Fri, 27 Oct 2023 14:36:35 +0200 Subject: [PATCH] Update CI config to use latest Ubuntu and node version --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c07b0e..185a1e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ name: Tests jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Node ${{ matrix.node }} strategy: matrix: @@ -13,6 +13,8 @@ jobs: - '12' - '14' - '16' + - '18' + - '20' steps: - uses: actions/checkout@v2 - name: Setup node @@ -23,7 +25,7 @@ jobs: - run: npm test test-targets: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: ${{ matrix.targets.name }} strategy: matrix: @@ -38,7 +40,7 @@ jobs: - name: Setup node uses: actions/setup-node@v1 with: - node-version: '14' + node-version: '20' - run: npm install - run: npm run ${{ matrix.targets.target }} - name: Upload coverage