From 5299e0b530d841624d984abc51429bf4f48c2e69 Mon Sep 17 00:00:00 2001 From: Tom French Date: Tue, 10 Oct 2023 10:40:07 +0100 Subject: [PATCH 1/3] chore: update yarn.lock file --- yarn.lock | 1 + 1 file changed, 1 insertion(+) diff --git a/yarn.lock b/yarn.lock index dc8f223fb0d..66773cf275e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1020,6 +1020,7 @@ __metadata: version: 0.0.0-use.local resolution: "@noir-lang/types@workspace:tooling/noir_js_types" dependencies: + "@noir-lang/noirc_abi": "workspace:*" "@types/prettier": ^3 eslint: ^8.50.0 eslint-plugin-prettier: ^5.0.0 From ad3ba1f7b93c2835e083b62445a932dc436a0c19 Mon Sep 17 00:00:00 2001 From: Tom French Date: Tue, 10 Oct 2023 10:43:17 +0100 Subject: [PATCH 2/3] chore(ci): always run `yarn install` to validate yarn.lock --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 5efe115ddcf..751dee428c0 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,7 +10,7 @@ runs: with: path: "**/node_modules" key: yarn-v1-${{ hashFiles('**/yarn.lock') }} + # We run this step unconditionally to validate that the yarn.lock file is accurate - name: Install run: yarn --immutable shell: bash - if: steps.cache.outputs.cache-hit != 'true' From 55bad9b8572ddead5998dbbb82ac123aa61b2ebf Mon Sep 17 00:00:00 2001 From: Tom French Date: Tue, 10 Oct 2023 11:07:49 +0100 Subject: [PATCH 3/3] Revert "chore(ci): always run `yarn install` to validate yarn.lock" This reverts commit ad3ba1f7b93c2835e083b62445a932dc436a0c19. --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 751dee428c0..5efe115ddcf 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,7 +10,7 @@ runs: with: path: "**/node_modules" key: yarn-v1-${{ hashFiles('**/yarn.lock') }} - # We run this step unconditionally to validate that the yarn.lock file is accurate - name: Install run: yarn --immutable shell: bash + if: steps.cache.outputs.cache-hit != 'true'