Skip to content

Commit

Permalink
fix: fix icon display error in qq miniprogram
Browse files Browse the repository at this point in the history
  • Loading branch information
Topology2333 committed Apr 13, 2024
1 parent 9d3f9c1 commit f998c66
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/receive-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit f998c66

Please sign in to comment.