We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9791ea6 commit d3ad185Copy full SHA for d3ad185
.github/workflows/tests-w3id.yml
@@ -0,0 +1,36 @@
1
+# .github/workflows/test.yml
2
+name: Tests [W3ID]
3
+
4
+on:
5
+ push:
6
+ paths:
7
+ - 'infrastructure/w3id/**'
8
+ pull_request:
9
10
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
16
+ strategy:
17
+ node-version: 22
18
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v3
22
23
+ - name: Set up Node.js 22
24
+ uses: actions/setup-node@v4
25
+ with:
26
27
+ cache: 'pnpm'
28
29
+ - name: Install pnpm
30
+ run: npm install -g pnpm
31
32
+ - name: Install dependencies
33
+ run: pnpm install
34
35
+ - name: Run tests
36
+ run: pnpm test
0 commit comments