From 197ca05ab6ba262b509da11a7f188f85732e3460 Mon Sep 17 00:00:00 2001 From: Tyler Hill Date: Tue, 30 Jul 2024 17:16:00 -0500 Subject: [PATCH] PNPM to NPM --- .github/workflows/submit.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml index 1b1bc63..e6c4ba9 100644 --- a/.github/workflows/submit.yml +++ b/.github/workflows/submit.yml @@ -14,20 +14,16 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 - - name: Set up pNPM - uses: pnpm/action-setup@v3 - with: - version: latest - run_install: true - - name: Set up Node.js uses: actions/setup-node@v3 with: node-version: 18 - cache: 'pnpm' + + - name: Install packages + run: npm ci - name: Build and package extension - run: pnpm build --target=chrome-mv3 --zip && pnpm build --target=firefox-mv3 --zip + run: npm build --target=chrome-mv3 --zip && npm build --target=firefox-mv3 --zip - name: Publish extension uses: PlasmoHQ/bpp@v3