Skip to content

Commit d3ad185

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

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/tests-w3id.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
10+
- 'infrastructure/w3id/**'
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+
node-version: 22
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

Comments
 (0)