-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add GitHub workflows (#119) * fix broken tests * general tidying * add github workflow * correct extension * correct name * format * tidy * Remove `refund` action for testnet competition (#120) * remove refund all action for testnet * fix script * Fix workflow (#121) * run on PR * fix tests * format * Mp 2736 improve estimates (#122) * use wasms * fmt * tidy * add secret manager * config update * remove wasm files * Update mars endpoints. * improve logging * fix tests * fmt --------- Co-authored-by: piobab <[email protected]> * update secret manager (#123) * Update contract addresses (#124) * update secret manager * update addresses * fmt --------- Co-authored-by: piobab <[email protected]>
- Loading branch information
1 parent
f3f9119
commit b66609d
Showing
27 changed files
with
1,067 additions
and
1,047 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,41 @@ | ||
name: Scripts | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- perps | ||
pull_request: | ||
|
||
jobs: | ||
coverage: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Required for coverage comparison | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'yarn' | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'yarn' # Specify yarn for caching | ||
|
||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Run Tests | ||
run: yarn test | ||
|
||
- name: Check Coverage | ||
run: yarn test:coverage | ||
|
||
- name: Check Formatting | ||
run: yarn format:check |
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.