From 55758f3c58e56615904c9a67f5f7d39b0e56b52a Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Wed, 22 May 2024 06:51:51 +0200 Subject: [PATCH] feat(test): add node 18, 20 and 22 Update GH Actions --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6582df1..4b6f1ab 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,11 +14,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14, 16] + node-version: [14, 16, 18, 20, 22] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies @@ -29,6 +29,6 @@ jobs: npm run coverage - name: Publish to coveralls.io if: ${{ matrix.node-version == 16 }} - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v2 with: github-token: ${{ github.token }}