Skip to content

Bump expo-auth-session from 7.0.10 to 55.0.12 in /mobile #96

Bump expo-auth-session from 7.0.10 to 55.0.12 in /mobile

Bump expo-auth-session from 7.0.10 to 55.0.12 in /mobile #96

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