From d9382fd3675bd2990418e77623b472c4bb667d9b Mon Sep 17 00:00:00 2001 From: Tim Kurvers Date: Sun, 21 Jan 2024 01:24:44 +0100 Subject: [PATCH] chore: update Node versions in ci matrix --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/pull-request.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef8a159..57b55fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 @@ -22,24 +22,24 @@ jobs: CI: true test-coverage: - name: test coverage (12.x) + name: test coverage (20.x) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 20 - run: npm install - run: npm run test:coverage - uses: codecov/codecov-action@v1 build: - name: build (12.x) + name: build (20.x) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 20 - run: npm install - run: npm run build diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 2834f73..e3e727a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 @@ -19,24 +19,24 @@ jobs: CI: true test-coverage: - name: test coverage (12.x) + name: test coverage (20.x) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 20 - run: npm install - run: npm run test:coverage - uses: codecov/codecov-action@v1 build: - name: build (12.x) + name: build (20.x) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 20 - run: npm install - run: npm run build