/
githubmirror
/
github-readme-stats
Обзор
Документация
Войти
/
githubmirror
/
github-readme-stats
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/e2e-test.yml
41 строка
1 KB
Ophelia Goldstein
ci: revert restoring e2e test workflow (#4709)
21 дек 2025, 15:23
Не верифицирован
21 дек 2025, 15:23
6ade6b4
Код
Авторство
О чём код?
name: Test Deployment on: # Temporarily disabled automatic triggers; manual-only for now. workflow_dispatch: # Original trigger (restore to re-enable): # deployment_status: permissions: read-all jobs: e2eTests: # Temporarily disabled; set to the original condition to re-enable. # if: # github.repository == 'anuraghazra/github-readme-stats' && # github.event_name == 'deployment_status' && # github.event.deployment_status.state == 'success' if: false name: Perform e2e tests runs-on: ubuntu-latest strategy: matrix: node-version: [22.x] steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Setup Node uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version: ${{ matrix.node-version }} cache: npm - name: Install dependencies run: npm ci env: CI: true - name: Run end-to-end tests. run: npm run test:e2e # env: # VERCEL_PREVIEW_URL: ${{ github.event.deployment_status.target_url }}