From d69437db95728d05c13aab61d499fd8c37f2fb24 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Sat, 30 Nov 2024 23:47:58 +0100 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e415c14..fc24512 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,6 @@ name: CI on: push: - pull_request: workflow_dispatch: concurrency: @@ -32,9 +31,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install pnpm - uses: pnpm/action-setup@v4 - - name: Set node version to ${{ inputs.node-version }} uses: actions/setup-node@v4 with: @@ -44,7 +40,7 @@ jobs: run: npm i - name: Install Playwright Dependencies - run: pnpm exec playwright install chromium --with-deps + run: npm i -g pnpm && pnpm exec playwright install chromium --with-deps - name: Build run: npm run build