Skip to content

Commit

Permalink
ci: replace restore action with install action (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
fionnachan authored Aug 1, 2024
1 parent 116c15d commit 480ad71
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: OffchainLabs/actions/node-modules/restore@main
- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main

- name: Lint sdk
run: |
Expand Down Expand Up @@ -91,8 +91,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: OffchainLabs/actions/node-modules/restore@main
- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main

- run: yarn audit:ci

Expand All @@ -112,8 +112,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: OffchainLabs/actions/node-modules/restore@main
- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main

- name: Build
run: |
Expand Down Expand Up @@ -152,8 +152,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: OffchainLabs/actions/node-modules/restore@main
- name: Install node_modules
uses: OffchainLabs/actions/node-modules/install@main

- name: Set up the local node
uses: OffchainLabs/actions/run-nitro-test-node@main
Expand Down

0 comments on commit 480ad71

Please sign in to comment.