File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " npm"
4+ directory : " /"
5+ schedule :
6+ interval : " weekly"
7+ open-pull-requests-limit : 10
8+ - package-ecosystem : " github-actions"
9+ directory : " /"
10+ schedule :
11+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ lint :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ - uses : oven-sh/setup-bun@v2
19+ - run : bun install
20+ - run : bunx eslint . --ext .ts,.js --max-warnings 0
21+
22+ test :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v4
26+ - uses : oven-sh/setup-bun@v2
27+ - run : bun install
28+ - run : bun run test --coverage
29+
30+ security :
31+ runs-on : ubuntu-latest
32+ needs : [lint, test]
33+ steps :
34+ - uses : actions/checkout@v4
35+ - uses : github/codeql-action/init@v3
36+ - uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments