Skip to content

feat: add push notifications #42

feat: add push notifications

feat: add push notifications #42

Workflow file for this run

name: Code quality - linting and typechecking
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
distribution: "temurin"
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: 📦 Install dependencies
run: yarn install
- name: 🧹 Linting
run: yarn lint:js
- name: ✨ Prettier
run: yarn format
- name: 🔎 Typechecking
run: yarn tsc:compile