From ca4687a7765bb36cb771a6f13db2b288714c177c Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Tue, 11 Jun 2024 08:25:12 +0200 Subject: [PATCH] (actions) also run on node 18 & 20 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b7a6894..7a00950e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - node_version: [14, 16] + node_version: [14, 16, 18, 20] steps: - uses: actions/checkout@v4 env: @@ -30,7 +30,7 @@ jobs: - name: Test run: npm test - uses: stefanzweifel/git-auto-commit-action@v5 - if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 16 }} + if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 20 }} with: commit_message: Update Build file_pattern: 'build/*.js'