πŸ“¦ ionic-team / ionic-framework

πŸ“„ action.yml Β· 39 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39name: 'Build Ionic Vue'
description: 'Build Ionic Vue'
runs:
  using: 'composite'
  steps:
    - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
      with:
        node-version: 24.x
    - uses: ./.github/workflows/actions/download-archive
      with:
        name: ionic-core
        path: ./core
        filename: CoreBuild.zip
    - name: πŸ•ΈοΈ Install Vue Dependencies
      run: npm ci
      shell: bash
      working-directory: ./packages/vue
    - name: πŸ”„ Sync
      run: npm run sync
      shell: bash
      working-directory: ./packages/vue
    - name: πŸ–ŒοΈ Lint
      run: npm run lint
      shell: bash
      working-directory: ./packages/vue
    - name: πŸ—οΈ Build
      run: npm run build
      shell: bash
      working-directory: ./packages/vue
    - name: πŸ” Check Diff
      run: git diff --exit-code
      shell: bash
      working-directory: ./packages/vue
    - uses: ./.github/workflows/actions/upload-archive
      with:
        name: ionic-vue
        output: packages/vue/VueBuild.zip
        paths: packages/vue/dist packages/vue/css