feat: pool rewards #453
Workflow file for this run
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: Check PR | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| env: | |
| HUSKY: 0 | |
| CI: true | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| cache: "yarn" | |
| node-version-file: ".nvmrc" | |
| - name: Configure access to private npm packages | |
| run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
| - name: Perform checks | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn typecheck:ci | |
| yarn lint:ci | |
| yarn prettier:ci | |
| yarn test | |
| env: | |
| MAINNET_TESTS_FORK: ${{ secrets.MAINNET_TESTS_FORK }} | |
| ARBITRUM_TESTS_FORK: ${{ secrets.ARBITRUM_TESTS_FORK }} |