-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependencies & add prettier (#27)
* bump dependencies * bump jest and eslint * add prettier * return indent back * add macOS 11 tests * fix yaml * fix job names
- Loading branch information
1 parent
cb46b9b
commit bc5c628
Showing
11 changed files
with
3,110 additions
and
4,526 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
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,39 @@ | ||
name: Validate 'setup-xcode' | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
schedule: | ||
- cron: 0 0 * * * | ||
|
||
jobs: | ||
versions-macOS-1015: | ||
name: macOS 10.15 | ||
runs-on: macos-10.15 | ||
strategy: | ||
matrix: | ||
xcode-version: ['10.3', '11', '12', '12.0', '12.4', '^12.1.0', '~12.1.0', latest, latest-stable] | ||
fail-fast: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- uses: ./ | ||
with: | ||
xcode-version: ${{ matrix.xcode-version }} | ||
|
||
versions-macOS-110: | ||
name: macOS 11 | ||
runs-on: macos-11 | ||
strategy: | ||
matrix: | ||
xcode-version: ['11.7', '12', '12.5.0', '13', latest, latest-stable] | ||
fail-fast: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- uses: ./ | ||
with: | ||
xcode-version: ${{ matrix.xcode-version }} |
This file was deleted.
Oops, something went wrong.
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
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,5 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"arrowParens": "avoid" | ||
} |
Oops, something went wrong.