We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968668c commit 034d854Copy full SHA for 034d854
1 file changed
.github/workflows/rust.yml
@@ -53,7 +53,7 @@ jobs:
53
uses: actions/cache@v4
54
with:
55
path: ~/.npm
56
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
57
restore-keys: |
58
${{ runner.os }}-node-
59
@@ -63,7 +63,7 @@ jobs:
63
sudo apt install -y libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
64
65
- name: Install Node.js dependencies
66
- run: npm ci
+ run: npm install
67
68
- name: Cache Rust dependencies
69
0 commit comments