File tree 2 files changed +45
-2
lines changed
2 files changed +45
-2
lines changed Original file line number Diff line number Diff line change 33
33
- name : Install dependencies
34
34
run : npm ci
35
35
36
- - name : Test formatting
36
+ - name : Formatting
37
37
run : npm run test:format
38
38
39
- - name : Test types
39
+ - name : Types
40
40
run : npm run test:types
Original file line number Diff line number Diff line change
1
+ name : Web
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ paths :
8
+ - web/**
9
+ - .github/workflows/web.yaml
10
+ pull_request :
11
+ branches :
12
+ - main
13
+ paths :
14
+ - web/**
15
+ - .github/workflows/web.yaml
16
+
17
+ jobs :
18
+ test :
19
+ runs-on : ubuntu-latest
20
+ defaults :
21
+ run :
22
+ working-directory : web
23
+
24
+ steps :
25
+ - name : Checkout code
26
+ uses : actions/checkout@v4
27
+
28
+ - name : Set up Node.js
29
+ uses : actions/setup-node@v4
30
+ with :
31
+ node-version : " 22"
32
+
33
+ - name : Install dependencies
34
+ run : npm ci
35
+
36
+ - name : Formatting
37
+ run : npm run test:format
38
+
39
+ - name : Types
40
+ run : npm run test:types
41
+
42
+ - name : Unit tests
43
+ run : npm run test:unit
You can’t perform that action at this time.
0 commit comments