From 904fcfb7a29464a419d614ff9dfffd4005615d41 Mon Sep 17 00:00:00 2001 From: Jacob Thomason Date: Sun, 8 Oct 2023 18:22:49 -0400 Subject: [PATCH] Update CI config --- .github/workflows/node.js.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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