@@ -32,14 +32,14 @@ jobs:
3232 with :
3333 node-version : ${{ matrix.node-version }}
3434
35- - name : yarn install
36- run : yarn
35+ - name : npm install
36+ run : npm install
3737
3838 - name : run formatting and license check
39- run : yarn format:check
39+ run : npm run format:check
4040
4141 - name : run unit tests (includes lint)
42- run : yarn test
42+ run : npm run test
4343
4444 node-integration-test :
4545 if : github.secret_source == 'Actions'
@@ -53,15 +53,15 @@ jobs:
5353 uses : actions/setup-node@v3
5454 with :
5555 node-version : ${{ matrix.node-version }}
56- cache : ' yarn '
56+ cache : ' npm '
5757
58- - name : yarn install
59- run : yarn
58+ - name : npm install
59+ run : npm install
6060
6161 - name : run node iTests
6262 env :
6363 GEMINI_API_KEY : ${{ secrets.GEMINI_API_KEY }}
64- run : yarn test:node:integration
64+ run : npm run test:node:integration
6565
6666 web-integration-test :
6767 if : github.secret_source == 'Actions'
@@ -75,15 +75,15 @@ jobs:
7575 uses : actions/setup-node@v3
7676 with :
7777 node-version : ${{ matrix.node-version }}
78- cache : ' yarn '
78+ cache : ' npm '
7979
80- - name : yarn install
81- run : yarn
80+ - name : npm install
81+ run : npm install
8282
8383 - name : run web iTests
8484 env :
8585 GEMINI_API_KEY : ${{ secrets.GEMINI_API_KEY }}
86- run : yarn test:web:integration
86+ run : npm run test:web:integration
8787
8888 interface-alignment-test :
8989 name : Interface Alignment Test
9494 uses : actions/setup-node@v3
9595 with :
9696 node-version : 20
97- cache : ' yarn '
97+ cache : ' npm '
9898
9999 - name : Get VertexAI repo
100100 # Need to npm install inner repo first or there will be errors
@@ -103,7 +103,7 @@ jobs:
103103 cd nodejs-vertexai
104104 npm install
105105 cd ..
106- yarn
106+ npm install
107107
108108 - name : Run tests
109109 env :
0 commit comments