From 480ad7176b18573b9fe9e65122b7910464a98acd Mon Sep 17 00:00:00 2001 From: Fionna Chan <13184582+fionnachan@users.noreply.github.com> Date: Thu, 1 Aug 2024 22:45:26 +0100 Subject: [PATCH] ci: replace restore action with install action (#524) --- .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