+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
when:
2
+
- event: ["push", "pull_request"]
3
branch: ["main"]
4
5
+
engine: "nixery"
6
7
dependencies:
8
nixpkgs:
9
+
- coreutils
10
- nodejs_24
11
- pnpm
12
···
14
- name: Install dependencies
15
command: pnpm install --frozen-lockfile
16
- name: Run formatter checks
17
+
command: pnpm run fmt-ci
+4
-4
.tangled/workflows/codeqa-lint.yml
+4
-4
.tangled/workflows/codeqa-lint.yml
···
1
when:
2
+
- event: ["push", "pull_request"]
3
branch: ["main"]
4
5
+
engine: "nixery"
6
7
dependencies:
8
nixpkgs:
9
+
- coreutils
10
- nodejs_24
11
- pnpm
12
···
14
- name: Install dependencies
15
command: pnpm install --frozen-lockfile
16
- name: Run linter checks
17
+
command: pnpm run lint
History
2 rounds
0 comments
samanthanguyen.me
submitted
#1
expand 0 comments
pull request successfully merged
samanthanguyen.me
submitted
#0
1 commit
expand
collapse
ci: fix minor issues with CI workflows