feat(operation rules): add resetApproval and clearMintAllowances for … #177
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| jobs: | |
| check: | |
| strategy: | |
| fail-fast: true | |
| name: Foundry project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| #v1.5.0 | |
| uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e | |
| with: | |
| version: nightly | |
| - name: Show Forge version | |
| run: | | |
| forge --version | |
| - name: Run Forge build | |
| run: | | |
| forge build --sizes | |
| id: build | |
| - name: Run Forge tests | |
| run: | | |
| forge test -vvv | |
| id: test | |
| - name: Setup NodeJS 20.5.0 | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.0 | |
| with: | |
| node-version: 20.5.0 | |
| - name: Show NodeJS version | |
| run: npm --version | |
| - name: Install Project Dependencies | |
| run: npm install | |
| - name: Run Hardhat Test | |
| run: npx hardhat test |