diff options
author | Aleksey Kladov <[email protected]> | 2020-02-26 21:00:09 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-26 21:00:09 +0000 |
commit | 5fcb4bb5093158bed081f32a7b8091b7015b49b4 (patch) | |
tree | 14ad701c097c1c65e99ea7bcfb5efb7b3005dc22 | |
parent | e47f0f98c9661aa0b6f59694362d2a19579456d7 (diff) | |
parent | 4291b618109fbaebc0ab082101b0c23020fe5f53 (diff) |
Merge pull request #3329 from Veetaha/feature/vscode-add-npm-audit
vscode: added audit at ci
-rw-r--r-- | .github/workflows/ci.yaml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8ab47106d..2df40a83c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -79,7 +79,7 @@ jobs: | |||
79 | if: matrix.os == 'windows-latest' | 79 | if: matrix.os == 'windows-latest' |
80 | run: Remove-Item ./target/debug/xtask.exe | 80 | run: Remove-Item ./target/debug/xtask.exe |
81 | 81 | ||
82 | type-script: | 82 | typescript: |
83 | name: TypeScript | 83 | name: TypeScript |
84 | runs-on: ubuntu-latest | 84 | runs-on: ubuntu-latest |
85 | env: | 85 | env: |
@@ -96,7 +96,12 @@ jobs: | |||
96 | 96 | ||
97 | - run: npm ci | 97 | - run: npm ci |
98 | working-directory: ./editors/code | 98 | working-directory: ./editors/code |
99 | |||
100 | - run: npm audit | ||
101 | working-directory: ./editors/code | ||
102 | |||
99 | - run: npm run fmt | 103 | - run: npm run fmt |
100 | working-directory: ./editors/code | 104 | working-directory: ./editors/code |
105 | |||
101 | - run: npm run package --scripts-prepend-node-path | 106 | - run: npm run package --scripts-prepend-node-path |
102 | working-directory: ./editors/code | 107 | working-directory: ./editors/code |