/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/actions/test-angular-e2e/action.yml
46 строк
2 KB
renovate[bot]
chore(deps): update actions/setup-node action to v7 (#31268)
15 июл 2026, 17:03
Не верифицирован
15 июл 2026, 17:03
9f595d4
Код
Авторство
О чём код?
name: 'Test Angular E2E' description: 'Test Angular E2E' inputs: app: description: 'The specific test application' 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 - uses: ./.github/workflows/actions/download-archive with: name: ionic-angular path: ./packages/angular filename: AngularBuild.zip - uses: ./.github/workflows/actions/download-archive with: name: ionic-angular-server path: ./packages/angular-server filename: AngularServerBuild.zip - name: 🧪 Create Test App run: ./build.sh ${{ inputs.app }} shell: bash working-directory: ./packages/angular/test - name: 🕸️ Install Dependencies run: npm install shell: bash working-directory: ./packages/angular/test/build/${{ inputs.app }} - name: 📦 Install Playwright Browsers run: npx playwright install chromium shell: bash working-directory: ./packages/angular/test/build/${{ inputs.app }} - name: 🔄 Sync Built Changes run: npm run sync shell: bash working-directory: ./packages/angular/test/build/${{ inputs.app }} - name: 🧪 Run Tests run: npm run test shell: bash working-directory: ./packages/angular/test/build/${{ inputs.app }}