From 1c26fd6bc2bc2266a394ff0a40c05cccddc578bb Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Thu, 14 Nov 2024 08:27:21 -0700 Subject: [PATCH] wip --- .github/workflows/test.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 885ae06..77ce650 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,8 +24,16 @@ jobs: cache: 'npm' registry-url: 'https://registry.npmjs.org' - - name: Build with Node.js ${{ matrix.node }} on ${{ matrix.os }} - run: npm run install-zstd && npm install --loglevel verbose --ignore-scripts && npm run compile + - name: Install zstd + run: npm run install-zstd + shell: bash + + - name: install dependencies + run: pm install --loglevel verbose --ignore-scripts + shell: bash + + - name: Compile addon + run: npm run compile shell: bash - name: Test ${{ matrix.os }}