File tree 2 files changed +25
-16
lines changed
2 files changed +25
-16
lines changed Original file line number Diff line number Diff line change
1
+ name : Test (Node)
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ test :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-node@v4
16
+ with :
17
+ node-version : 22.x
18
+ - name : Install deps
19
+ run : |
20
+ npx jsr install
21
+ - name : Test
22
+ run : |
23
+ npx --yes tsx --test *_test.ts
24
+ timeout-minutes : 5
Original file line number Diff line number Diff line change 26
26
- name : Type check
27
27
run : deno task check
28
28
29
- test-deno :
29
+ test :
30
30
runs-on : ubuntu-latest
31
31
steps :
32
32
- uses : actions/checkout@v4
45
45
files : ./coverage.lcov
46
46
token : ${{ secrets.CODECOV_TOKEN }}
47
47
48
- test-node :
49
- runs-on : ubuntu-latest
50
- steps :
51
- - uses : actions/checkout@v4
52
- - uses : actions/setup-node@v4
53
- with :
54
- node-version : 22.x
55
- - name : Install deps
56
- run : |
57
- npx jsr install
58
- - name : Test
59
- run : |
60
- npx --yes tsx --test *_test.ts
61
- timeout-minutes : 5
62
-
63
48
jsr-publish :
64
49
runs-on : ubuntu-latest
65
50
steps :
You can’t perform that action at this time.
0 commit comments