Files
ukmesh/.github/workflows/frontend-mobile.yml
T
dependabot[bot] 363380fca8 Bump GitHub Actions dependencies (#13)
Updates actions/checkout, actions/setup-node, and actions/setup-python to their current v7 releases after all repository checks passed.
2026-07-23 20:53:17 +01:00

29 lines
608 B
YAML

name: Frontend mobile
on:
pull_request:
paths:
- 'frontend/**'
- '.github/workflows/frontend-mobile.yml'
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run build
- run: npx playwright install --with-deps chromium
- run: npm run test:mobile