-
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.
Merge branch 'dev' into naynay/faucet
- Loading branch information
Showing
62 changed files
with
2,030 additions
and
583 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: Build, lint, test | ||
run-name: Test JS CLI (started by @${{ github.triggering_actor }}) | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
|
||
jobs: | ||
build_test_lint: | ||
name: Build, test, and lint | ||
permissions: | ||
contents: read | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.10.0 | ||
- name: Install | ||
run: yarn --network-timeout 180000 | ||
- name: Typecheck | ||
run: yarn run test:types | ||
- name: Build | ||
run: yarn run build | ||
- name: Add TSS server host mappings | ||
run: | | ||
echo "127.0.0.1 alice-tss-server bob-tss-server" | sudo tee -a /etc/hosts | ||
- name: Test | ||
run: yarn run test |
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
Oops, something went wrong.