From 9e553b908887b1ee7a581ce70f8b5707b3a60a32 Mon Sep 17 00:00:00 2001 From: Jos Warmer Date: Thu, 9 May 2024 11:16:09 +0200 Subject: [PATCH] Fix github actions workflow --- .github/workflows/node.js.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 2945b2fdc..5fdf753e8 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,18 +16,18 @@ jobs: strategy: matrix: - node-version: [ 18.x ] + node-version: [ 20.x ] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4.0.2 with: node-version: ${{ matrix.node-version }} # cache: 'npm' - run: npm install - - run: nmp run build + - run: npm run build - run: npm run test # - name: Send mail