/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/actions/test-core-spec/action.yml
29 строк
887 B
renovate[bot]
chore(deps): update actions/setup-node action to v7 (#31268)
15 июл 2026, 17:03
Не верифицирован
15 июл 2026, 17:03
9f595d4
Код
Авторство
О чём код?
name: 'Test Core Spec' description: 'Test Core Spec' inputs: stencil-version: description: 'The NPM tag of @stencil/core to install.' runs: using: 'composite' steps: - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: 24.x - name: 🕸️ Install Dependencies run: npm ci working-directory: ./core shell: bash - name: 📦 Install Stencil ${{ inputs.stencil-version }} run: npm install @stencil/core@${{ inputs.stencil-version }} shell: bash working-directory: ./core if: ${{ inputs.stencil-version != '' }} - uses: ./.github/workflows/actions/download-archive with: name: ionic-core path: ./core filename: CoreBuild.zip - name: 🧪 Test run: npm run test.spec -- --ci shell: bash working-directory: ./core