Skip to content

Commit d701425

Browse files
committed
fix: resolve CI workflow conflicts and frontend dependencies
1 parent 61a72e0 commit d701425

File tree

4 files changed

+13
-6551
lines changed

4 files changed

+13
-6551
lines changed

.github/workflows/frontend-ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ jobs:
3131
uses: actions/setup-node@v4
3232
with:
3333
node-version: "20"
34-
cache: "pnpm"
35-
cache-dependency-path: frontend/pnpm-lock.yaml
3634

3735
- name: Install dependencies
3836
run: pnpm install

.github/workflows/test_contract.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111
- uses: software-mansion/setup-scarb@v1
1212
with:
1313
scarb-version: 2.11.3
14+
- uses: actions/cache@v3
15+
with:
16+
path: ~/.cache/scarb
17+
key: ${{ runner.os }}-scarb-${{ hashFiles('contract/Scarb.lock') }}
18+
restore-keys: |
19+
${{ runner.os }}-scarb-
1420
- name: Check cairo format
1521
working-directory: contract
1622
run: scarb fmt --check
@@ -25,6 +31,12 @@ jobs:
2531
- uses: software-mansion/setup-scarb@v1
2632
with:
2733
scarb-version: 2.11.2
34+
- uses: actions/cache@v3
35+
with:
36+
path: ~/.cache/scarb
37+
key: ${{ runner.os }}-scarb-${{ hashFiles('contract/Scarb.lock') }}
38+
restore-keys: |
39+
${{ runner.os }}-scarb-
2840
- uses: foundry-rs/setup-snfoundry@v3
2941
with:
3042
starknet-foundry-version: 0.39.0

0 commit comments

Comments
 (0)