Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Rey committed Dec 22, 2023
1 parent c76e482 commit b773bbc
Show file tree
Hide file tree
Showing 29 changed files with 22,630 additions and 43,889 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/age-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Test
run: npm run test
Expand All @@ -35,7 +35,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
2 changes: 1 addition & 1 deletion .github/workflows/age-daily-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: ./age/contracts/package-lock.json

- name: Install dependencies
run: npm install
run: npm install --legacy-peer-deps

- name: Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/asynccalls-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autonomousprice-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autonomousprice-daily-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: ./autonomousprice/contracts/package-lock.json

- name: Install dependencies
run: npm install
run: npm install --legacy-peer-deps

- name: Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/blog-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/blog-daily-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: ./blog/contracts/package-lock.json

- name: Install dependencies
run: npm install
run: npm install --legacy-peer-deps

- name: Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helloworld-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helloworld-daily-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: ./helloworld/contracts/package-lock.json

- name: Install dependencies
run: npm install
run: npm install --legacy-peer-deps

- name: Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sum-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sum-daily-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: ./sum/contracts/package-lock.json

- name: Install dependencies
run: npm install
run: npm install --legacy-peer-deps

- name: Deploy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tictactoe-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: 18

- name: Install
run: npm ci
run: npm ci --legacy-peer-deps

- name: Code quality
run: npm run fmt:check
Expand Down
2 changes: 1 addition & 1 deletion age/contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Keep in mind that many false positives will remain undetected by ESLint such as
Prerequisites :

- You must add a .env file at the root of the repository with the following keys set to valid values :
- WALLET_PRIVATE_KEY="wallet_private_key"
- WALLET_PRIVATE_KEY="WALLET_PRIVATE_KEY"
- JSON_RPC_URL_PUBLIC=<https://buildnet.massa.net/api/v2:33035>
- JSON_RPC_URL_PRIVATE=<https://buildnet.massa.net/api/v2:33035>

Expand Down
Loading

0 comments on commit b773bbc

Please sign in to comment.