This repository was archived by the owner on Aug 27, 2025. It is now read-only.
chore(deps): update dependency prettier to v3.6.2 #201
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: Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| solhint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Install Dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run Check | |
| run: yarn solhint | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run CodeSpell | |
| uses: codespell-project/actions-codespell@v1.0 | |
| with: | |
| check_filenames: true | |
| ignore_words_file: .codespellignore | |
| skip: ./.git,package-lock.json,yarn.lock | |
| upgradeable: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Install Dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Copy configuration file | |
| run: cp .env.example .env | |
| - name: Run Check | |
| run: yarn upgradeable | |
| contract-storage-layout: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Install Dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Update Modules | |
| run: yarn sync | |
| - name: Run Check | |
| run: yarn storage-layout | |
| slither: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Copy configuration file | |
| run: cp .env.example .env | |
| - name: Disable foundry | |
| run: rm foundry.toml | |
| - uses: crytic/slither-action@v0.3.0 | |
| id: slither | |
| with: | |
| node-version: 16 | |
| sarif: results.sarif | |
| fail-on: none | |
| slither-config: slither.config.json | |
| - name: Upload SARIF file | |
| uses: github/codeql-action/upload-sarif@v2 | |
| with: | |
| sarif_file: ${{ steps.slither.outputs.sarif }} |