summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 498aa8dc4..62da40295 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -33,7 +33,7 @@ jobs:
- { os: macos, compiler: gcc }
- { os: macos, compiler: cl }
include:
- - { os: linux, runs-on: ubuntu-latest }
+ - { os: linux, runs-on: ubuntu-22.04 }
- { os: macos, runs-on: macos-latest }
- { os: windows, runs-on: windows-latest }
# Warnings are treated as errors by default.
@@ -123,6 +123,11 @@ jobs:
sudo apt-get update
sudo apt-get install -y libx11-dev
fi
+ - name: Setup Node.js
+ if: matrix.os == 'linux'
+ uses: actions/setup-node@v4
+ with:
+ node-version: "20.x"
- name: Setup
if: steps.filter.outputs.should-run == 'true'
uses: ./.github/actions/common-setup