We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e8540f + 1680d5d commit df7219dCopy full SHA for df7219d
.github/workflows/main.yml
@@ -1,4 +1,4 @@
1
-name: Wallet UI CI
+name: ClarityVault2026 CI
2
3
on:
4
push:
@@ -14,13 +14,21 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v3
16
17
- - name: Setup Node.js
+ - name: Setup Node.js v20
18
uses: actions/setup-node@v3
19
with:
20
- node-version: '18'
+ node-version: '20'
21
+
22
+ - name: Cache Node.js modules
23
+ uses: actions/cache@v3
24
+ with:
25
+ path: ~/.npm
26
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
27
+ restore-keys: |
28
+ ${{ runner.os }}-node-
29
30
- name: Install dependencies
- run: npm install
31
+ run: npm ci
32
33
- name: Run tests
34
run: npm run test
0 commit comments