Skip to content

Commit

Permalink
fix: add package-lock to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pikonha committed Oct 12, 2024
1 parent e72af5c commit 878171f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"

- name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js 21
uses: actions/setup-node@v3
with:
Expand All @@ -47,6 +53,12 @@ jobs:
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"

- name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js 21
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -74,6 +86,12 @@ jobs:
- name: "Install Foundry"
uses: "foundry-rs/foundry-toolchain@v1"

- name: Cache node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Use Node.js 21
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 878171f

Please sign in to comment.