senior/junior vault sunset (withdrawToMultisig) + migration script + fork test #540
This file contains hidden or 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: build-and-test | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| environment: CI | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn patch-package | |
| - run: yarn compile | |
| - run: yarn test | |
| env: | |
| ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} | |
| MNEMONIC: ${{ secrets.MNEMONIC }} | |
| PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
| storage-layout: | |
| runs-on: ubuntu-latest | |
| environment: CI | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn patch-package | |
| - run: yarn storage:check | |
| format: | |
| runs-on: ubuntu-latest | |
| environment: CI | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn format |