-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
1 parent
4302dd4
commit a1627a7
Showing
1,132 changed files
with
42,337 additions
and
53,467 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
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
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
titleOnly: true | ||
scopes: | ||
- attest | ||
- arktype.io | ||
- attest | ||
- dark | ||
- fs | ||
- repo | ||
- schema | ||
- type | ||
- utils |
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 |
---|---|---|
@@ -1,60 +1,68 @@ | ||
name: pr | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
core: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup repo | ||
uses: ./.github/actions/setup | ||
|
||
- name: prChecks | ||
run: pnpm prChecks | ||
|
||
compatibility: | ||
needs: core | ||
timeout-minutes: 20 | ||
strategy: | ||
matrix: | ||
# https://github.com/arktypeio/arktype/issues/738 | ||
node: [16, 18] | ||
os: [windows-latest, macos-latest] | ||
include: | ||
- os: ubuntu-latest | ||
node: 16 | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup repo | ||
uses: ./.github/actions/setup | ||
with: | ||
node: ${{ matrix.node }} | ||
|
||
- name: Test | ||
run: pnpm testRepo | ||
|
||
prChecks: | ||
needs: compatibility | ||
timeout-minutes: 1 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo All checks succeeded! ⛵ | ||
core: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup repo | ||
uses: ./.github/actions/setup | ||
|
||
- name: prChecks | ||
run: pnpm prChecks | ||
|
||
- name: TSC Diagnostics Diff | ||
uses: beerose/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
leave-comment: true | ||
|
||
compatibility: | ||
needs: core | ||
timeout-minutes: 20 | ||
strategy: | ||
matrix: | ||
node: [lts/*] | ||
os: [windows-latest, macos-latest] | ||
include: | ||
- os: ubuntu-latest | ||
node: lts/-1 | ||
# https://github.com/arktypeio/arktype/issues/738 | ||
# - os: ubuntu-latest | ||
# node: latest | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup repo | ||
uses: ./.github/actions/setup | ||
with: | ||
node: ${{ matrix.node }} | ||
|
||
# - name: Test | ||
# run: pnpm testRepo | ||
|
||
prChecks: | ||
needs: compatibility | ||
timeout-minutes: 1 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo All checks succeeded! ⛵ |
Oops, something went wrong.