Skip to content

refactor: modernize monorepo, migrate example app to Expo #47

refactor: modernize monorepo, migrate example app to Expo

refactor: modernize monorepo, migrate example app to Expo #47

Workflow file for this run

name: Test & build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Install SwiftFormat
uses: ./.github/actions/install-swiftformat
- name: Lint files
run: yarn lint
- name: Format code
run: yarn format
- name: Verify formatted code is unchanged
run: git diff --exit-code HEAD
- name: Typecheck files
run: yarn typecheck
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Run tests
run: yarn test
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Build plugin
run: yarn package build