chore(deps): bump the snapshot group across 1 directory with 2 update… #1124
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: Test | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| env: | |
| D3_API_KEY_MAINNET: ${{ secrets.D3_API_KEY_MAINNET }} | |
| UNSTOPPABLE_DOMAINS_API_KEY: ${{ secrets.UNSTOPPABLE_DOMAINS_API_KEY }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| cache: 'yarn' | |
| - name: Setup Redis | |
| uses: supercharge/redis-github-action@1.7.0 | |
| with: | |
| redis-version: '7' | |
| - name: Yarn install | |
| run: yarn install --frozen-lockfile | |
| - name: Test | |
| run: yarn test:coverage | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |