chore: pro 339 chore reduce code duplication in config checker script… #64
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
| # Run tests | |
| name: contracts-solana-oft-tests | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/contracts-solana-oft-tests.yml' | |
| - 'contracts/solanaOFT/**' | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| concurrency: | |
| group: ci-contracts-solana-oft-tests-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| tests: | |
| name: contracts-solana-oft-tests/tests (bpr) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: 'read' # Required to checkout repository code | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: 'false' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 | |
| with: | |
| version: 9 | |
| - name: Setup Node | |
| uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
| with: | |
| node-version: 20.x | |
| cache: pnpm | |
| cache-dependency-path: contracts/solanaOFT/pnpm-lock.yaml | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@8789b3e21e6c11b2697f5eb56eddae542f746c10 # v1.7.0 | |
| - name: Install dependencies | |
| working-directory: contracts/solanaOFT | |
| run: pnpm install --frozen-lockfile | |
| - name: Run unit tests | |
| working-directory: contracts/solanaOFT | |
| run: pnpm run test:forge |