feat: improve astToString, add tests for astToString #302
Workflow file for this run
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: pr | |
on: | |
pull_request: | |
branches: [main] | |
defaults: | |
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: | |
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! ⛵ |