chore: removed unneeded TODO #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Setup Mint package manager | |
uses: irgaly/setup-mint@v1 | |
- name: Cache Mint packages | |
uses: actions/cache@v4 | |
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@v4 | |
- 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@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build package | |
run: yarn prepare |