Skip to content

Commit b4f32b2

Browse files
committed
chore: add w3id tests github workflow
1 parent 9791ea6 commit b4f32b2

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/tests-w3id.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches: [main]
10+
paths:
11+
- 'infrastructure/w3id/**'
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

Comments
 (0)