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