diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-09 09:25:18 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-09 09:33:33 -0500 |
commit | 129a55fc3923e555547030a0a572f3d9854dc7c3 (patch) | |
tree | edb324b1d1adfcb709b35d03f95d651dcfbacaf9 /.github/workflows/node.yml | |
parent | feat: Attempt to add an omni lint (diff) | |
download | locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar.gz locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar.bz2 locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar.lz locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar.xz locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.tar.zst locusts-129a55fc3923e555547030a0a572f3d9854dc7c3.zip |
attempt to fix node CI
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/node.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index a8d8002..90e9b5e 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -33,13 +33,14 @@ jobs: key: ${{ runner.os }}-turbo-${{ github.sha }} restore-keys: | ${{ runner.os }}-turbo- + - name: Install pnpm and dependencies + uses: pnpm/action-setup@v4 + with: + run_install: true - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: "latest" cache: "pnpm" - - name: Install pnpm and dependencies - uses: pnpm/action-setup@v4 - with: - version: 8 - run_install: true + - name: Build and Test + run: pnpm build && pnpm test |