File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,16 @@ jobs:
24
24
uses : actions/setup-node@v3
25
25
with :
26
26
node-version : ${{ matrix.node-version }}
27
- - name : Cache node modules
28
- uses : actions/cache@v3
29
- env :
30
- cache-name : cache-node-modules
31
- with :
32
- # npm cache files are stored in `~/.npm` on Linux/macOS
33
- path : ~/.npm
34
- key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
27
+ # - name: Cache node modules
28
+ # uses: actions/cache@v3
29
+ # env:
30
+ # cache-name: cache-node-modules
31
+ # with:
32
+ # # npm cache files are stored in `~/.npm` on Linux/macOS
33
+ # path: ~/.npm
34
+ # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
35
+ - name : Install dependencies
36
+ run : npm install
35
37
- name : Build
36
38
run : npm run build
37
39
- name : Test On Node ${{ matrix.node-version }}
You can’t perform that action at this time.
0 commit comments