Skip to content

Feat: Welcome screen improvement and harmanize the flow with file browser #172

Feat: Welcome screen improvement and harmanize the flow with file browser

Feat: Welcome screen improvement and harmanize the flow with file browser #172

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- "main"
- "**/main"
- "!release-please*"
types:
- opened
- reopened
- synchronize
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
# necessary for git diff of changed files in the PR
with:
fetch-depth: 2
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/[email protected]
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm ci --prefer-offline --no-audit
- name: Start server 💻
run: npm run test:serve &
env:
CI: true
GITCLERK_GITHUB_REPO: octocat/Hello-World
GITCLERK_GITHUB_TOKEN: dummy-token
- name: Wait for server to be ready 💻
run: npx wait-on http://localhost:3000
- name: Run Cypress tests 👀
run: npm run test:ga
- name: Upload failed test screenshots 📷
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots