1
0

chore: switch to node 20

此提交包含在:
2024-06-23 13:14:42 +02:00
父節點 d31c11bfb8
當前提交 fd980f9ecb
共有 2 個檔案被更改,包括 3 行新增3 行删除

查看文件

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

查看文件

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