Add a variant of the Vesting wallet for updating the beneficiary #1152
Workflow file for this run
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
name: Test | |
# on: | |
# push: | |
# branches: [master] | |
# pull_request: {} | |
on: | |
pull_request: | |
branches-ignore: | |
- 'release/**' | |
- 'release/*' | |
- 'proposal/**' | |
jobs: | |
test: | |
if: "!startsWith(github.head_ref, 'release/')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- uses: actions/[email protected] | |
id: cache | |
with: | |
path: '**/node_modules' | |
key: npm-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: npm- | |
- run: yarn | |
if: steps.cache.outputs.cache-hit != 'true' | |
- run: npm run test | |
subgraph-test: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install subgraph dependencies | |
working-directory: ./subgraph | |
run: npm run install | |
- name: Run test | |
working-directory: ./subgraph | |
run: npm run test |