fix: write to balanced layout at width (#52) #62
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: CI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "src/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "src**" | |
- ".github/workflows/ci.yml" | |
- "package.json" | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Typecheck | |
uses: gozala/typescript-error-reporter-action@v1.0.9 | |
with: | |
project: ./tsconfig.json | |
check-external: | |
name: Typecheck External | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Install test package | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: test/ts-use | |
useLockFile: false | |
- name: Typecheck | |
uses: gozala/typescript-error-reporter-action@v1.0.9 | |
with: | |
project: ./test/ts-use/tsconfig.json | |
test-node: | |
name: Test Node | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
os: | |
- ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Test | |
run: yarn test:node | |
test-web: | |
name: Test Web | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Test | |
run: yarn test:web |