Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Wallet UI CI
name: ClarityVault2026 CI

on:
push:
Expand All @@ -14,13 +14,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
- name: Setup Node.js v20
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'

- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Install dependencies
run: npm install
run: npm ci

- name: Run tests
run: npm run test
Expand Down
Loading