Skip to content

Commit 2820c3b

Browse files
committed
ci: update uniapp yarn
1 parent aa1bacd commit 2820c3b

File tree

4 files changed

+4482
-7055
lines changed

4 files changed

+4482
-7055
lines changed

.github/workflows/build-uniapp.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: build-demos
2+
3+
on:
4+
push:
5+
branches: ["main", "develop"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [16.x, 18.x, 20.x, 21.x, 22.x, 23.x, 24.x]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
24+
- name: Build with-uniapp-vue3
25+
working-directory: ./demos/with-uniapp-vue3
26+
run: |
27+
yarn install
28+
yarn run build:h5
29+
30+
- name: Build with-uniapp-vue2
31+
working-directory: ./demos/with-uniapp-vue2
32+
run: |
33+
yarn install
34+
yarn run build:h5

demos/with-uniapp-vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@dcloudio/uni-mp-weixin": "3.0.0-4030620241128001",
5151
"@dcloudio/uni-mp-xhs": "3.0.0-4030620241128001",
5252
"@dcloudio/uni-quickapp-webview": "3.0.0-4030620241128001",
53-
"ezuikit-js": "8.1.10-beta.13",
53+
"ezuikit-js": "8.1.12-beta.2",
5454
"vue": "^3.4.21",
5555
"vue-i18n": "^9.1.9"
5656
},

0 commit comments

Comments
 (0)