/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/actions/build-angular/action.yml
42 строки
1 KB
Gonçalo M.
ci(github): pin third-party actions to commit SHAs (#31277)
22 июл 2026, 23:40
Не верифицирован
22 июл 2026, 23:40
eaae506
Код
Авторство
О чём код?
name: 'Build Ionic Angular' description: 'Build Ionic Angular' runs: using: 'composite' steps: - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 24.x - uses: ./.github/workflows/actions/download-archive with: name: ionic-core path: ./core filename: CoreBuild.zip - name: 🕸️ Install Angular Dependencies run: npm ci shell: bash working-directory: ./packages/angular - name: 🔄 Sync run: npm run sync shell: bash working-directory: ./packages/angular - name: 🖌️ Lint run: npm run lint shell: bash working-directory: ./packages/angular - name: 🏗️ Build run: npm run build shell: bash working-directory: ./packages/angular - name: Clean core package.json run: git checkout ./package.json shell: bash working-directory: ./core - name: 🔍 Check Diff run: git diff --exit-code shell: bash working-directory: ./packages/angular - uses: ./.github/workflows/actions/upload-archive with: name: ionic-angular output: ./packages/angular/AngularBuild.zip paths: ./packages/angular/dist