Skip to content

Commit

Permalink
ci: build both vue2/3 components
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Sep 7, 2023
1 parent 482b717 commit ee341f5
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,15 @@ jobs:
with:
node-version: 14

- name: Build Vue Components
- name: Build Vue2 Components
run: |
cd vue-components
cd vue2
npm ci
npm run build
- name: Build Vue3 Components
run: |
cd vue3
npm ci
npm run build
Expand All @@ -103,9 +109,15 @@ jobs:
with:
node-version: 14

- name: Build Vue Components
- name: Build Vue2 Components
run: |
cd vue2
npm ci
npm run build
- name: Build Vue3 Components
run: |
cd vue-components
cd vue3
npm ci
npm run build
Expand Down

0 comments on commit ee341f5

Please sign in to comment.