Skip to content

Add public URL to README #5

Add public URL to README

Add public URL to README #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Run unit tests
run: npm test
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run E2E tests
run: npm run test:e2e
- name: Upload E2E artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-e2e-report
path: |
playwright-report/
test-results/
if-no-files-found: ignore
e2e-pwa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run PWA E2E tests
run: npm run test:e2e:pwa
- name: Upload PWA E2E artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-pwa-e2e-report
path: |
playwright-report/
test-results/
if-no-files-found: ignore