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