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 b4f32b2Copy full SHA for b4f32b2
.github/workflows/tests-w3id.yml
@@ -0,0 +1,35 @@
1
+name: Tests [W3ID]
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - 'infrastructure/w3id/**'
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v3
20
21
+ - name: Set up Node.js 22
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 22
25
+ cache: 'pnpm'
26
27
+ - name: Install pnpm
28
+ run: npm install -g pnpm
29
30
+ - name: Install dependencies
31
+ run: pnpm install
32
33
+ - name: Run tests
34
+ run: pnpm test
35
0 commit comments