From be672f8e71c22d7d30b402c658e212f310b58e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 27 Sep 2022 10:42:11 +0200 Subject: [PATCH] ci: update matrix (#32) --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c35a973..77e4cd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,14 +8,15 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: keyv: ['3.x', '4.x'] - node: ['12.x', '14.x', '15.x'] + node: ['12.x', '14.x', '16.x', '18.x'] steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Node.js ${{matrix.node}} - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v3 with: node-version: ${{matrix.node}} - name: Configure Firestore credentials @@ -35,12 +36,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: npm install - - name: Install Node.js 14.x - uses: actions/setup-node@v2-beta + - name: Install Node.js 18.x + uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: '18.x' - name: Run standard run: npm run test:lint