Skip to content

trying to fix ci

trying to fix ci #81

Workflow file for this run

name: "checks"
on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
- feat/github-action
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Compile only
env:
NODE_OPTIONS: "--max_old_space_size=16384"
run: npx hardhat zkit compile
- name: Update hardhat.config
run: |

Check failure on line 29 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
sed -i "/compilationSettings: {/a \ skipFiles:\n[\n\"mock\/ec\/scalarMult.circom\",\n\"mock\/ec\/scalarMultBrainpoolP256r1.circom\",\n\"mock\/signatures\/ecdsaNum.circom\",\n]," hardhat.config.ts
cat hardhat.config.ts
- name: Compile and setup
env:
NODE_OPTIONS: "--max_old_space_size=16384"
run: npm run compile
- name: Run tests
run: npm run test