From 4900f038934fa2175cdb38235d22f6301d5b19fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dragi=C5=A1a=20Spasojevi=C4=87?= Date: Thu, 31 Oct 2024 11:37:00 +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 84fe5018f..f26f04748 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: | @@ -174,8 +174,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