Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Caching #138

Merged
merged 3 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
${{ runner.os }}-yarn-

- name: E2E Test
run: yarn && yarn test e2e
run: |
yarn --frozen-lockfile
yarn test e2e
env:
MPC_CONTRACT_ID: v1.signer-prod.testnet
NEAR_ACCOUNT_ID: ${{secrets.NEAR_ACCOUNT_ID}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
${{ runner.os }}-yarn-

- name: Install & Build
run: yarn && yarn build

- name: Lint & Unit Test & Coverage
run: |
yarn --frozen-lockfile
yarn lint
yarn build
yarn verify
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"lint": "eslint . --ignore-pattern dist/ && prettier --check **/*.ts",
"test": "jest --testTimeout 30000",
"coverage": "yarn test --coverage",
"verify": "yarn lint && yarn coverage unit",
"verify": "yarn coverage unit",
"fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && eslint src/ --fix"
},
"engines": {
Expand Down