-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
304 changed files
with
22,040 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Build and test all targets | ||
|
||
on: | ||
push: | ||
branches: ['main'] | ||
pull_request: | ||
branches: ['main'] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: ['18.x'] | ||
|
||
defaults: | ||
run: | ||
working-directory: 'CoreEditor' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: '**/yarn.lock' | ||
|
||
- name: Build and test CoreEditor | ||
run: | | ||
yarn install | ||
yarn build | ||
yarn test | ||
- name: Build MarkEditMac | ||
run: | | ||
xcodebuild build -project ../MarkEdit.xcodeproj -scheme MarkEditMac -destination 'platform=macOS' | ||
- name: Test MarkEditCoreTests | ||
run: | | ||
xcodebuild test -project ../MarkEdit.xcodeproj -scheme MarkEditCoreTests -destination 'platform=macOS' | ||
- name: Test ModulesTests | ||
run: | | ||
xcodebuild test -project ../MarkEdit.xcodeproj -scheme ModulesTests -destination 'platform=macOS' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## System | ||
*.DS_Store | ||
|
||
## User settings | ||
xcuserdata/ | ||
Local.xcconfig |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
project: MarkEdit.xcodeproj | ||
retain_public: true | ||
schemes: | ||
- MarkEditMac | ||
- PreviewExtension | ||
targets: | ||
- MarkEditCore.MarkEditCore | ||
- MarkEditKit.MarkEditKit | ||
- MarkEditMac | ||
- Modules.AppKitControls | ||
- Modules.AppKitExtensions | ||
- Modules.FontPicker | ||
- Modules.Previewer | ||
- Modules.Proofing | ||
- Modules.SettingsUI | ||
- PreviewExtension |
Oops, something went wrong.