chore: switch to node 20

This commit is contained in:
Lucien Cartier-Tilet 2024-06-23 13:14:42 +02:00
parent d31c11bfb8
commit fd980f9ecb
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 22.x
node-version: 20.x
- run: npm ci
- uses: purcell/setup-emacs@master
with:

View File

@ -1,6 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_22
nativeBuildInputs = [
pkgs.nodejs_20
];
}