Skip to content

docs: updated docs for new config plugin option #97

docs: updated docs for new config plugin option

docs: updated docs for new config plugin option #97

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@v3
- name: Setup
uses: ./.github/actions/setup
- name: Setup Mint package manager
uses: irgaly/setup-mint@v1
- name: Cache Mint packages
uses: actions/cache@v3
with:
path: ~/.mint
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: |
${{ runner.os }}-mint-
- name: Install SwiftFormat
run: |
mint install nicklockwood/SwiftFormat
echo "$HOME/.mint/bin" >> $GITHUB_PATH
- name: Lint files
run: yarn lint
- name: Run SwiftFormat
run: swiftformat --verbose ios
- 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@v3
- name: Setup
uses: ./.github/actions/setup
- name: Run unit tests
run: yarn test --maxWorkers=2 --coverage
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Build package
run: yarn prepare