We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc16f51 commit 8cf6076Copy full SHA for 8cf6076
.github/workflows/test.yml
@@ -0,0 +1,41 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: ["main", "master"]
6
+ pull_request:
7
8
+jobs:
9
+ test-clarity:
10
+ name: Clarity contract tests
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: "22"
18
+ cache: "npm"
19
20
+ - name: Install dependencies
21
+ run: npm ci
22
23
+ - name: Run clarity tests
24
+ run: npm run test:clarity
25
26
+ test-node:
27
+ name: Node tests
28
29
30
31
32
33
34
35
36
37
38
39
40
+ - name: Run node tests
41
+ run: npm run test:node
0 commit comments