+18
.tangled/workflows/audit.yml
+18
.tangled/workflows/audit.yml
+24
.tangled/workflows/test.yml
+24
.tangled/workflows/test.yml
···
1
+
when:
2
+
- event: ["push"]
3
+
branch: ["master"]
4
+
5
+
engine: "nixery"
6
+
7
+
dependencies:
8
+
nixpkgs:
9
+
- nodejs
10
+
11
+
steps:
12
+
- name: "Install dependencies"
13
+
command: "npm ci"
14
+
15
+
- name: "tsc"
16
+
command: "npm run build && echo 'done.'"
17
+
18
+
- name: "tests"
19
+
command: "npm test"
20
+
21
+
clone:
22
+
skip: false
23
+
depth: 3
24
+
submodules: false