+3
-3
.tangled/workflows/build.yml
+3
-3
.tangled/workflows/build.yml
+4
-4
.tangled/workflows/codeqa-fmt.yml
+4
-4
.tangled/workflows/codeqa-fmt.yml
···
1
1
when:
2
-
- event: ["pull_request"]
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
-
engine:
6
-
- nixery
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
9
+
- coreutils
10
10
- nodejs_24
11
11
- pnpm
12
12
···
14
14
- name: Install dependencies
15
15
command: pnpm install --frozen-lockfile
16
16
- name: Run formatter checks
17
-
command: npm run fmt-check
17
+
command: pnpm run fmt-ci
+4
-4
.tangled/workflows/codeqa-lint.yml
+4
-4
.tangled/workflows/codeqa-lint.yml
···
1
1
when:
2
-
- event: ["pull_request"]
2
+
- event: ["push", "pull_request"]
3
3
branch: ["main"]
4
4
5
-
engine:
6
-
- nixery
5
+
engine: "nixery"
7
6
8
7
dependencies:
9
8
nixpkgs:
9
+
- coreutils
10
10
- nodejs_24
11
11
- pnpm
12
12
···
14
14
- name: Install dependencies
15
15
command: pnpm install --frozen-lockfile
16
16
- name: Run linter checks
17
-
command: npm run lint
17
+
command: pnpm run lint