Skip to content

Bump expo-status-bar from 3.0.9 to 55.0.5 in /mobile #99

Bump expo-status-bar from 3.0.9 to 55.0.5 in /mobile

Bump expo-status-bar from 3.0.9 to 55.0.5 in /mobile #99

Workflow file for this run

name: Zappify CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Build Docker image
run: docker build -t zappify-backend .
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint