From ef8fba0762b6638200a3c1096b87ce07b3e47715 Mon Sep 17 00:00:00 2001 From: Fionna <13184582+fionnachan@users.noreply.github.com> Date: Thu, 1 Aug 2024 21:51:09 +0100 Subject: [PATCH] ci: replace restore action with install action --- .github/workflows/build-test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b8b1acd69..2a675fc22 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -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: | @@ -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 @@ -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: | @@ -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