mirror of
https://github.com/System-End/github-readme-stats.git
synced 2026-04-20 00:35:23 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9bb56186c3...1d96c772d1)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alexandr <qwerty541zxc@gmail.com>
36 lines
914 B
YAML
36 lines
914 B
YAML
name: Test Deployment
|
|
on:
|
|
deployment_status:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
e2eTests:
|
|
if:
|
|
github.repository == 'anuraghazra/github-readme-stats' &&
|
|
github.event_name == 'deployment_status' &&
|
|
github.event.deployment_status.state == 'success'
|
|
name: Perform 2e2 tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
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 }}
|