From 6413f97ac29fb5a9e6a6e1d7fdb4422c8ad18dde Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Tue, 11 Jun 2024 08:51:15 +0200 Subject: [PATCH] (actions) 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 cb69b77..3748cd8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - node_version: [16, 18] + node_version: [18, 20] steps: - uses: actions/checkout@v4 env: @@ -28,7 +28,7 @@ jobs: - name: Build run: npm run build - uses: stefanzweifel/git-auto-commit-action@v5 - if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 18 }} + if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 20 }} with: commit_message: Update Build file_pattern: 'build/*.js'