Skip to content

Integrate Challenges into habits screen #213

Integrate Challenges into habits screen

Integrate Challenges into habits screen #213

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
lint:
name: bun lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun i --frozen-lockfile
- name: Run Expo Lint
run: bun lint
format-files:
name: bun format:check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun i --frozen-lockfile
- name: Format All Files with Prettier
run: bun format:check
expo-doctor:
name: bunx expo-doctor
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun i --frozen-lockfile
- name: Run Expo Doctor
run: bunx expo-doctor