Skip to content

Commit 8304013

Browse files
authored
chore: fix false positive npm-ci check (#64)
1 parent 6826f5c commit 8304013

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/code-scanning/src/validate-lock-files.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import {
1010
} from './shared-types';
1111

1212
const LOCK_FILES = [
13-
'package-lock.json', // npm
14-
'yarn.lock', // yarn
15-
'pnpm-lock.yaml', // pnpm
16-
'bun.lockb', // bun
13+
'package-lock.json',
14+
'yarn.lock',
15+
'pnpm-lock.yaml',
16+
'bun.lockb',
1717
] as const;
1818

1919
interface WorkspaceInfo {

0 commit comments

Comments
 (0)