Skip to content

Merge pull request #5 from europanite/feature/develop #20

Merge pull request #5 from europanite/feature/develop

Merge pull request #5 from europanite/feature/develop #20

Workflow file for this run

name: Frontend Unit Tests
on:
push:
pull_request:
jobs:
test:
name: Run Jest (React Native / Expo)
runs-on: ubuntu-latest
env:
CI: "1"
EXPO_PUBLIC_API_BASE: http://localhost:8000
EXPO_TUNNEL: "false"
EXPO_DEVTOOLS_LISTEN_ADDRESS: 0.0.0.0
REACT_NATIVE_PACKAGER_HOSTNAME: 127.0.0.1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: |
frontend/app/package-lock.json
- name: Install dependencies
working-directory: frontend/app
run: npm ci