From 942c2c258f93c2adae7c7f45ad8fbbac4b9d30c0 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Fri, 27 Oct 2023 16:31:02 -0600 Subject: [PATCH] chore: use pnpm in workflow --- .github/workflows/ts-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ts-build.yml b/.github/workflows/ts-build.yml index 39cc922..34523d1 100644 --- a/.github/workflows/ts-build.yml +++ b/.github/workflows/ts-build.yml @@ -26,11 +26,11 @@ jobs: # Install npm 10 & TypeScript - name: Install global packages - run: npm i -g npm@10 typescript + run: npm i -g npm@10 typescript pnpm # Install ass dependencies (including types) - name: Install dependencies - run: npm i --save-dev + run: pnpm i # Compile the TypeScript files - name: Run build script