From f998c6677ba2f3856e272462cc2330444454ef09 Mon Sep 17 00:00:00 2001 From: lw2333 <2374046775@qq.com> Date: Sat, 13 Apr 2024 20:18:05 +0800 Subject: [PATCH] fix: fix icon display error in qq miniprogram --- .github/workflows/receive-pr.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/receive-pr.yml b/.github/workflows/receive-pr.yml index 0c75567d..d3b690cc 100644 --- a/.github/workflows/receive-pr.yml +++ b/.github/workflows/receive-pr.yml @@ -15,7 +15,12 @@ jobs: with: node-version: "16.x" cache: "yarn" - - name: Install Dependencies + - name: Install npm Dependencies + run: | + npm install + npm cache clean --force + npm audit fix --force + - name: Install Yarn Dependencies run: | yarn install --frozen-lockfile --production=false - name: Lint @@ -27,6 +32,9 @@ jobs: - name: Build Weixin Miniprogram run: | yarn run build:mp-weixin + - name: Build QQ Miniprogram + run: | + npm run dev:mp-qq - name: Save PR number run: |