chore(deps): update aws-actions/configure-aws-credentials digest to b547701 #10143
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: Contracts Testing | |
| on: | |
| workflow_dispatch: | |
| merge_group: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| paths-ignore: | |
| - "kleros-sdk/**" | |
| - "services/**" | |
| - "subgraph/**" | |
| - "web/**" | |
| pull_request: | |
| branches: | |
| - "*" | |
| permissions: # added using https://github.com/step-security/secure-workflows | |
| contents: read | |
| jobs: | |
| contracts-testing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@v2.10.1 | |
| with: | |
| disable-sudo: true | |
| egress-policy: block | |
| allowed-endpoints: > | |
| binaries.soliditylang.org:443 | |
| classic.yarnpkg.com:443 | |
| github.com:443 | |
| nightly.yarnpkg.com:443 | |
| nodejs.org:443 | |
| objects.githubusercontent.com:443 | |
| registry.yarnpkg.com:443 | |
| registry.npmjs.org:443 | |
| 54.185.253.63:443 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
| with: | |
| node-version: 18.x | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| submodules: recursive | |
| - name: Cache node modules | |
| uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| path: | | |
| ~/.npm | |
| **/node_modules | |
| key: ${{ runner.os }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}- | |
| - name: Install contracts dependencies | |
| run: yarn workspace @kleros/kleros-v2-contracts install | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 | |
| - name: Install lcov | |
| run: sudo apt-get install -y lcov | |
| - name: Run Hardhat and Foundry tests with coverage | |
| run: yarn coverage | |
| working-directory: contracts | |
| - name: Upload a build artifact | |
| uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
| with: | |
| name: code-coverage-report | |
| path: contracts/coverage |