diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index b447200..52c3704 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -21,10 +21,16 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci - - run: npm test + + - uses: pnpm/action-setup@v2 + with: + version: 8 + + - run: make install-vendors + - run: make test