deno.land / x / simple_utility@v0.0.9 / .github / workflows_json / test.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ "name": "Test", "on": { "push": { "branches": [ "dev" ], "paths-ignore": [ ".git*", "**.md" ] }, "pull_request": { "branches": [ "master", "dev" ], "paths-ignore": [ ".git*", "**.md" ] } }, "jobs": { "test": { "name": "Test: ${{matrix.os}}", "runs-on": "${{matrix.os}}", "strategy": { "fail-fast": true, "matrix": { "os": [ "ubuntu-latest", "macos-latest", "windows-latest" ] } }, "steps": [{ "name": "clone repository", "uses": "actions/checkout@v3" }, { "name": "install deno", "uses": "denoland/setup-deno@v1", "with": { "deno-version": "v1.x" } }, { "name": "run test", "run": "deno test -A ./mod.test.ts" }] } }}
simple_utility

Version Info

Tagged at
a year ago