diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 79ffd60..6b70083 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -26,5 +26,11 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm install - - run: npm build + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + - name: Run build + uses: borales/actions-yarn@v4 + with: + cmd: build # will run `yarn build` command