Skip to content

Commit

Permalink
no need for special extra step check
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Oct 14, 2024
1 parent 7b82b3d commit 59e327f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 19 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,3 @@ jobs:
NEAR_ACCOUNT_ID: ${{secrets.NEAR_ACCOUNT_ID}}
NEAR_ACCOUNT_PRIVATE_KEY: ${{secrets.NEAR_PK}}
ETH_PK: ${{secrets.ETH_PK}}

- name: Save Cache (Only if no match was found)
if: steps.yarn-cache.outputs.cache-hit != 'true'
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
9 changes: 0 additions & 9 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,3 @@ jobs:
yarn lint
yarn build
yarn verify
- name: Save Cache (Only if no match was found)
if: steps.yarn-cache.outputs.cache-hit != 'true'
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
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

0 comments on commit 59e327f

Please sign in to comment.