Skip to content

chore: update issue templates with typescript codesandbox links #13541

chore: update issue templates with typescript codesandbox links

chore: update issue templates with typescript codesandbox links #13541

Workflow file for this run

name: CI
on: pull_request
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ">=20.9.0 20"
- run: npm ci
- run: npx prettier --check './src/**/*.{js,jsx,ts,tsx}'
- run: npm run lint
- run: npm run type-check
test:
name: Test with Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18.x", "20.x"]
shard: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: |
npm test -- --ci --maxWorkers=4 --shard=${{ matrix.shard }} --colors
env:
CONTAINER: ${{ matrix.shard }}