Skip to content

random fixes

random fixes #61

Workflow file for this run

name: Expo Jest Tests
on:
push:
branches:
- main
- dev
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: app/package-lock.json
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm test