tangled
alpha
login
or
join now
samanthanguyen.me
/
node
0
fork
atom
repository template for Node.js & TypeScript projects
0
fork
atom
overview
issues
pulls
pipelines
ci: fix minor issues with CI workflows
samanthanguyen.me
2 months ago
38612874
b53b2c7a
0/3
build.yml
failed
8s
codeqa-fmt.yml
failed
8s
codeqa-lint.yml
failed
7s
+8
-11
3 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
codeqa-fmt.yml
codeqa-lint.yml
+2
-3
.tangled/workflows/build.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
+3
-4
.tangled/workflows/codeqa-fmt.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
···
14
13
- name: Install dependencies
15
14
command: pnpm install --frozen-lockfile
16
15
- name: Run formatter checks
17
17
-
command: npm run fmt-check
16
16
+
command: pnpm run fmt-ci
+3
-4
.tangled/workflows/codeqa-lint.yml
reviewed
···
1
1
when:
2
2
-
- event: ["pull_request"]
2
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
5
-
engine:
6
6
-
- nixery
5
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
···
14
13
- name: Install dependencies
15
14
command: pnpm install --frozen-lockfile
16
15
- name: Run linter checks
17
17
-
command: npm run lint
16
16
+
command: pnpm run lint