File tree 1 file changed +1
-27
lines changed
1 file changed +1
-27
lines changed Original file line number Diff line number Diff line change @@ -28,38 +28,12 @@ jobs:
28
28
strategy :
29
29
fail-fast : false
30
30
matrix :
31
- language : ['javascript']
32
- node-version : [18]
31
+ language : ['javascript-typescript']
33
32
34
33
steps :
35
34
- name : Checkout repository
36
35
uses : actions/checkout@v4
37
36
38
- - name : Setup Node.js ${{ matrix.node-version }}
39
- uses : actions/setup-node@v4
40
- with :
41
- node-version : ${{ matrix.node-version }}
42
-
43
- - name : Get npm cache directory
44
- id : npm-cache-dir
45
- run : |
46
- echo "::set-output name=dir::$(npm config get cache)"
47
-
48
- - name : Cache npm cache
49
- uses : actions/cache@v4
50
- id : npm-cache
51
- with :
52
- path : ${{ steps.npm-cache-dir.outputs.dir }}
53
- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
54
- restore-keys : |
55
- ${{ runner.os }}-node-
56
-
57
- - name : Install latest npm
58
- run : npm install --global npm@latest
59
-
60
- - name : Install dependencies
61
- run : npm ci
62
-
63
37
- name : Initialize CodeQL
64
38
uses : github/codeql-action/init@v3
65
39
with :
You can’t perform that action at this time.
0 commit comments