-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
name: Cargo Build & Test | ||
name: Cargo Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Node.js Tests | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
token_contract: | ||
name: Token Contract Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "21" | ||
cache: "npm" | ||
- run: npm install --prefix token-contract | ||
- run: npm test --prefix token-contract | ||
|
||
bridge_contract: | ||
name: Bridge Contract Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "21" | ||
cache: "npm" | ||
- run: npm install --prefix bridge-contract | ||
- run: npm test --prefix bridge-contract | ||
|
||
rollup_contract: | ||
name: Rollup Contract Tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "21" | ||
cache: "npm" | ||
- run: npm install --prefix rollup-contract | ||
- run: npm test --prefix rollup-contract | ||
|
||
proof_generator: | ||
name: Proof Generator Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "21" | ||
cache: "npm" | ||
- run: npm install --prefix proof-generator | ||
- run: npm test --prefix proof-generator |