From 56c0a6cb8612cbbe9c77f92fe9d43ddd16438736 Mon Sep 17 00:00:00 2001 From: Jonas Stumph Stevnsvig Date: Wed, 25 Oct 2023 20:45:24 +0200 Subject: [PATCH 1/2] add node 20 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d13b673..c5f7467 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [16.x, 20.x] steps: - uses: actions/checkout@v3 - name: Cache node modules From 313d1587719166220ef387905e79d078f50b61ee Mon Sep 17 00:00:00 2001 From: Jonas Stumph Stevnsvig Date: Wed, 25 Oct 2023 20:54:59 +0200 Subject: [PATCH 2/2] update libraries --- .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 c5f7467..c85eb04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache node modules uses: actions/cache@v3 with: @@ -56,7 +56,7 @@ jobs: restore-keys: | ${{ runner.os }}-node- - name: Node ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm install and npm run build