File tree 7 files changed +8
-188
lines changed
7 files changed +8
-188
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ concurrency:
19
19
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
20
20
21
21
jobs :
22
- audit-ci :
22
+ audit :
23
23
name : Audit node modules
24
24
runs-on : ubuntu-latest
25
25
timeout-minutes : 15
Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ This directory contains scripts used for the development of code-server.
24
24
- Runs unit tests.
25
25
- [ ./ci/dev/test-e2e.sh] ( ./dev/test-e2e.sh ) (` yarn test:e2e ` )
26
26
- Runs end-to-end tests.
27
- - [ ./ci/dev/ci.sh] ( ./dev/ci.sh ) (` yarn ci ` )
28
- - Runs ` yarn fmt ` , ` yarn lint ` and ` yarn test ` .
29
27
- [ ./ci/dev/watch.ts] ( ./dev/watch.ts ) (` yarn watch ` )
30
28
- Starts a process to build and launch code-server and restart on any code changes.
31
29
- Example usage in [ ./docs/CONTRIBUTING.md] ( ../docs/CONTRIBUTING.md ) .
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,10 +17,8 @@ We use the following tools to help us stay on top of vulnerability mitigation.
17
17
- Comprehensive vulnerability scanner that runs on PRs into the default
18
18
branch and scans both our container image and repository code (see
19
19
` trivy-scan-repo ` and ` trivy-scan-image ` jobs in ` build.yaml ` )
20
- - [ ` audit-ci ` ] ( https://github.com/IBM/audit-ci )
21
- - Audits npm and Yarn dependencies in CI (see ` Audit for vulnerabilities ` step
22
- in ` build.yaml ` ) on PRs into the default branch and fails CI if moderate or
23
- higher vulnerabilities (see the ` audit.sh ` script) are present.
20
+ - ` yarn audit ` and ` npm audit `
21
+ - Audits Yarn/NPM dependencies.
24
22
25
23
## Supported Versions
26
24
Original file line number Diff line number Diff line change 27
27
"postinstall" : " ./ci/dev/postinstall.sh" ,
28
28
"publish:npm" : " ./ci/steps/publish-npm.sh" ,
29
29
"publish:docker" : " ./ci/steps/docker-buildx-push.sh" ,
30
- "_audit" : " ./ci/dev/audit.sh" ,
31
30
"fmt" : " yarn prettier && ./ci/dev/doctoc.sh" ,
32
31
"lint:scripts" : " ./ci/dev/lint-scripts.sh" ,
33
32
"lint:ts" : " eslint --max-warnings=0 --fix $(git ls-files '*.ts' '*.js' | grep -v 'lib/vscode')" ,
34
33
"test" : " echo 'Run yarn test:unit or yarn test:e2e' && exit 1" ,
35
- "ci" : " ./ci/dev/ci.sh" ,
36
34
"watch" : " VSCODE_DEV=1 VSCODE_IPC_HOOK_CLI= NODE_OPTIONS='--max_old_space_size=32384 --trace-warnings' ts-node ./ci/dev/watch.ts" ,
37
35
"icons" : " ./ci/dev/gen_icons.sh"
38
36
},
53
51
"@types/ws" : " ^8.5.5" ,
54
52
"@typescript-eslint/eslint-plugin" : " ^7.0.0" ,
55
53
"@typescript-eslint/parser" : " ^6.7.2" ,
56
- "audit-ci" : " ^6.6.1" ,
57
54
"doctoc" : " ^2.2.1" ,
58
55
"eslint" : " ^8.49.0" ,
59
56
"eslint-config-prettier" : " ^9.0.0" ,
You can’t perform that action at this time.
0 commit comments