File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : main
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ test :
6
+ runs-on : ubuntu-latest
7
+ permissions :
8
+ checks : write
9
+ pull-requests : write
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : denoland/setup-deno@v1
13
+ with :
14
+ deno-version : v1.x
15
+ - uses : actions/setup-node@v4
16
+ with :
17
+ node-version : lts/*
18
+ - uses : oven-sh/setup-bun@v1
19
+ with :
20
+ bun-version : latest
21
+ - run : deno task test --junit-path=.test-report.xml
22
+ - uses : EnricoMi/publish-unit-test-result-action@v2
23
+ if : always()
24
+ with :
25
+ files : .test-report.xml
26
+ - run : deno task check
27
+ - run : deno task dnt
28
+ - run : bun run ./test_runner.js
29
+ working-directory : ${{ github.workspace }}/npm/
Original file line number Diff line number Diff line change
1
+ <!-- deno-fmt-ignore-file -->
2
+
1
3
@fedify/redis
2
4
=============
3
5
Original file line number Diff line number Diff line change 12
12
"@std/assert" : " jsr:@std/assert@^0.226.0" ,
13
13
"ioredis" : " npm:ioredis@^5.4.0"
14
14
},
15
+ "exclude" : [
16
+ " npm" ,
17
+ " *.md"
18
+ ],
15
19
"tasks" : {
20
+ "check" : " deno fmt --check && deno lint && deno check */*.ts" ,
16
21
"test" : " deno test --allow-net --allow-env" ,
17
22
"dnt" : " deno run -A dnt.ts"
18
23
}
You can’t perform that action at this time.
0 commit comments