File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 run : pnpm install --frozen-lockfile
3030
3131 - name : Run ESLint
32- run : pnpm exec eslint . --ext .ts,.js
32+ run : pnpm exec eslint "**/*.{ts,js}" --ignore-path .gitignore
3333
3434 - name : Check Prettier formatting
3535 run : pnpm exec prettier --check .
8282 security :
8383 name : Security Scan
8484 runs-on : ubuntu-latest
85+ permissions :
86+ actions : read
87+ contents : read
88+ security-events : write
8589 steps :
8690 - name : Checkout code
8791 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1+ # Dependencies and lock files
2+ node_modules /
3+ pnpm-lock.yaml
4+ package-lock.json
5+ yarn.lock
6+
7+ # Build outputs
8+ dist /
9+ build /
10+ * .tgz
11+
12+ # Git and CI
13+ .git /
14+ .github /
15+
16+ # Logs
17+ * .log
18+
19+ # IDE
20+ .vscode /
21+ .idea /
22+
23+ # OS
24+ .DS_Store
25+ Thumbs.db
You can’t perform that action at this time.
0 commit comments