Skip to content
/ core Public
  • Sponsor vuejs/core

  • Notifications You must be signed in to change notification settings
  • Fork 8.6k

Commit 3e2efe0

Browse files
authoredJun 7, 2023
Merge branch 'main' into feat/v-model-details-dialog
2 parents 43839c3 + a95e612 commit 3e2efe0

File tree

213 files changed

+12609
-8986
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+12609
-8986
lines changed
 

‎.github/workflows/ci.yml

+34-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,40 @@ jobs:
2626
node-version: 18
2727
cache: 'pnpm'
2828

29-
- run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install
29+
- name: Skip Puppeteer download
30+
run: echo "PUPPETEER_SKIP_DOWNLOAD=1" >> $GITHUB_ENV
31+
32+
- run: pnpm install
3033

3134
- name: Run unit tests
3235
run: pnpm run test-unit
3336

37+
unit-test-windows:
38+
runs-on: windows-latest
39+
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
40+
steps:
41+
- uses: actions/checkout@v3
42+
43+
- name: Install pnpm
44+
uses: pnpm/action-setup@v2
45+
46+
- name: Set node version to 18
47+
uses: actions/setup-node@v3
48+
with:
49+
node-version: 18
50+
cache: 'pnpm'
51+
52+
- name: Skip Puppeteer download
53+
run: echo "PUPPETEER_SKIP_DOWNLOAD=1" >> $env:GITHUB_ENV
54+
55+
- run: pnpm install
56+
57+
- name: Run compiler unit tests
58+
run: pnpm run test-unit compiler
59+
60+
- name: Run ssr unit tests
61+
run: pnpm run test-unit server-renderer
62+
3463
e2e-test:
3564
runs-on: ubuntu-latest
3665
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
@@ -72,7 +101,10 @@ jobs:
72101
node-version: 18
73102
cache: 'pnpm'
74103

75-
- run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install
104+
- name: Skip Puppeteer download
105+
run: echo "PUPPETEER_SKIP_DOWNLOAD=1" >> $GITHUB_ENV
106+
107+
- run: pnpm install
76108

77109
- name: Run eslint
78110
run: pnpm run lint

‎CHANGELOG.md

+200-2,960
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)