Skip to content

Commit

Permalink
add GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed Aug 1, 2024
1 parent bcf34f7 commit 2a1c268
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
- name: Check
- on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- jobs:
check:
runs-on: macos-latest
# TODO Xcode versions (multiple?)
steps:
- uses: actions/checkout@v4
- npm ci
- script/format/check
- script/lint/check
- swift build
- swift test

0 comments on commit 2a1c268

Please sign in to comment.