feat: Deploy Arc Testnet, Monad Testnet and Monad paymaster and v2, v3 factory contracts #317
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: Continuous Integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master, entry-point-v0.6] | |
| jobs: | |
| lint_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup environment | |
| uses: ./.github/actions/setup | |
| - name: Run formatter | |
| run: yarn format:check | |
| - name: Run linter | |
| run: yarn lint | |
| - name: Run unit tests | |
| run: yarn test | |
| scan: | |
| needs: lint_and_test | |
| if: github.event_name == 'pull_request' | |
| uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1 |