From 89bb618b910bd68c77905c825e8c9a9763761af0 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Wed, 11 Dec 2024 23:18:57 +0100 Subject: [PATCH] GitHub Actions: Node.js 20.x --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e2cbc37c..97aa96c6 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.x + - name: Use Node.js 20.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 20.x - run: npm ci - run: npm run build - run: npm test