ci: ignore checksum checks

Former-commit-id: 31d746e8e6
This commit is contained in:
cedoor
2022-06-08 14:45:30 +02:00
parent 17e683debe
commit 5470804e1c
3 changed files with 5 additions and 5 deletions

View File

@@ -34,13 +34,13 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: YARN_CHECKSUM_BEHAVIOR=reset yarn
run: YARN_CHECKSUM_BEHAVIOR=ignore yarn
- name: Download Snark artifacts
run: yarn download:snark-artifacts
- name: Compile contracts
run: yarn contracts
run: yarn compile
- name: Test contracts with coverage
run: yarn test:coverage

View File

@@ -32,7 +32,7 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: YARN_CHECKSUM_BEHAVIOR=reset yarn
run: YARN_CHECKSUM_BEHAVIOR=ignore yarn
- name: Run Prettier
run: yarn prettier

View File

@@ -35,13 +35,13 @@ jobs:
${{ runner.os }}-yarn-
- name: Install dependencies
run: YARN_CHECKSUM_BEHAVIOR=reset yarn
run: YARN_CHECKSUM_BEHAVIOR=ignore yarn
- name: Download Snark artifacts
run: yarn download:snark-artifacts
- name: Compile contracts
run: yarn contracts
run: yarn compile
- name: Test contracts with coverage
run: yarn test:coverage