ci: fix minor issues with CI workflow #2

merged
opened by samanthanguyen.me targeting main from ci-fixes
Changed files
+8 -11
.tangled
+2 -3
.tangled/workflows/build.yml
··· 1 when: 2 - - event: ["pull_request"] 3 branch: ["main"] 4 5 - engine: 6 - - nixery 7 8 dependencies: 9 nixpkgs:
··· 1 when: 2 + - event: ["push", "pull_request"] 3 branch: ["main"] 4 5 + engine: "nixery" 6 7 dependencies: 8 nixpkgs:
+3 -4
.tangled/workflows/codeqa-fmt.yml
··· 1 when: 2 - - event: ["pull_request"] 3 branch: ["main"] 4 5 - engine: 6 - - nixery 7 8 dependencies: 9 nixpkgs: ··· 14 - name: Install dependencies 15 command: pnpm install --frozen-lockfile 16 - name: Run formatter checks 17 - command: npm run fmt-check
··· 1 when: 2 + - event: ["push", "pull_request"] 3 branch: ["main"] 4 5 + engine: "nixery" 6 7 dependencies: 8 nixpkgs: ··· 13 - name: Install dependencies 14 command: pnpm install --frozen-lockfile 15 - name: Run formatter checks 16 + command: pnpm run fmt-ci
+3 -4
.tangled/workflows/codeqa-lint.yml
··· 1 when: 2 - - event: ["pull_request"] 3 branch: ["main"] 4 5 - engine: 6 - - nixery 7 8 dependencies: 9 nixpkgs: ··· 14 - name: Install dependencies 15 command: pnpm install --frozen-lockfile 16 - name: Run linter checks 17 - command: npm run lint
··· 1 when: 2 + - event: ["push", "pull_request"] 3 branch: ["main"] 4 5 + engine: "nixery" 6 7 dependencies: 8 nixpkgs: ··· 13 - name: Install dependencies 14 command: pnpm install --frozen-lockfile 15 - name: Run linter checks 16 + command: pnpm run lint