We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b48d84 commit 4259592Copy full SHA for 4259592
.github/workflows/ci.yml
@@ -71,6 +71,30 @@ jobs:
71
- name: Run Solhint
72
run: yarn solidity:lint
73
74
+ circuit-lint:
75
+ name: Circuit Lint
76
+ runs-on: ubuntu-latest
77
+ steps:
78
+ - name: Checkout code
79
+ uses: actions/checkout@v4
80
+
81
+ - name: Setup Node.js
82
+ uses: actions/setup-node@v4
83
+ with:
84
+ node-version: '20'
85
+ cache: 'yarn'
86
87
+ - name: Install dependencies
88
+ run: yarn install --frozen-lockfile
89
90
+ - name: Install Noir
91
+ uses: noir-lang/[email protected]
92
93
+ toolchain: '1.0.0-beta.6'
94
95
+ - name: Run Nargo Format
96
+ run: yarn circuit:lint
97
98
format-check:
99
name: Format Check
100
runs-on: ubuntu-latest
0 commit comments