Merge branch 'testnet' into feature/kyc-ui-fixes #3101
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: Tests | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| INFURA_KEY: ${{ secrets.INFURA_KEY }} | |
| ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
| steps: | |
| - name: 🏗 Setup repo | |
| uses: actions/checkout@v4 | |
| - name: Enable Corepack before setting up Node | |
| run: corepack enable | |
| - name: 📦 Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.3.0 | |
| - name: Install dependencies | |
| run: yarn --immutable | |
| - name: 🔍 Type check | |
| run: yarn run typeCheck | |
| - name: 🧹 Lint code | |
| run: yarn run lint | |
| - name: 🧪 Run tests | |
| run: yarn run test |