From 6d098e63de7725a29a8d7b5ff1704ac89a2e4902 Mon Sep 17 00:00:00 2001 From: Marcus Forsberg Date: Mon, 22 Apr 2024 11:06:15 +0200 Subject: [PATCH] ci: run on node 18 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 79a21f6..ff939d6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,7 @@ jobs: - uses: actions/setup-node@v4 with: #cache: npm - node-version: lts/* + node-version: 18 - run: npm clean-install # Linting can be skipped - run: npm run lint --if-present @@ -71,7 +71,7 @@ jobs: matrix: # Run the testing suite on each major OS with the latest LTS release of Node.js os: [macos-latest, ubuntu-latest, windows-latest] - node: [lts/*] + node: [18] # It makes sense to also test the oldest, and latest, versions of Node.js, on ubuntu-only since it's the fastest CI runner include: - os: ubuntu-latest @@ -115,7 +115,7 @@ jobs: - uses: actions/setup-node@v4 with: #cache: npm - node-version: lts/* + node-version: 18 - run: npm clean-install - run: npm audit signatures # Branches that will release new versions are defined in .releaserc.json