move gov init logic back to administrator #127
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: Quality Gate | |
| on: | |
| push: | |
| concurrency: | |
| group: quality-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| - run: npm run lint | |
| check-deploy: | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.CICROM_CI_PAT }} | |
| - uses: ./.github/actions/setup | |
| with: | |
| foundry: true | |
| - run: npm run compile | |
| - run: npm run deploy:initial hardhat | |
| integration-test: | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.CICROM_CI_PAT }} | |
| - uses: ./.github/actions/setup | |
| with: | |
| foundry: true | |
| - run: npm run int | |
| unit-test: | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.CICROM_CI_PAT }} | |
| - uses: ./.github/actions/setup | |
| with: | |
| foundry: true | |
| - run: npm run unit |