Skip to content

Test/integration arbitrum to gnosis #529

Test/integration arbitrum to gnosis

Test/integration arbitrum to gnosis #529

name: Contracts Testing
on:
workflow_dispatch:
push:
branches:
- master
- dev
pull_request:
branches:
- "*"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
with:
egress-policy: audit
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Enable Corepack
run: corepack enable
- name: Set Yarn version to Berry
run: yarn set version 4.2.2
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Cache node modules
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
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 parent dependencies
# run: |
# echo "current dir: $PWD"
# yarn install
- name: Install contracts dependencies
run: |
yarn workspace @kleros/vea-contracts install
- name: Compile
run: |
yarn hardhat compile
working-directory: contracts
- name: Test with coverage
run: |
yarn hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\" --show-stack-traces
working-directory: contracts
- name: Upload a build artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: code-coverage-report
path: contracts/coverage