feat: Enforce EVM-stringent validation on proposal action ABI inputs #3727
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: Library test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout actions | |
| uses: actions/checkout@v7.0.0 | |
| with: | |
| fetch-depth: 1 | |
| sparse-checkout: | | |
| .github/actions/setup | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| fetch-depth: 0 | |
| - name: Build library | |
| run: pnpm build | |
| - name: Build storybook | |
| run: pnpm build:storybook | |
| - name: Run tests with coverage | |
| run: | | |
| set -eo pipefail | |
| pnpm test:coverage | |
| - name: Check types | |
| run: pnpm type-check | |
| - name: Check linter and formatting | |
| run: pnpm lint:check | |
| - name: Check changeset | |
| if: github.event_name == 'pull_request' | |
| run: pnpm changeset status --since origin/main |