Skip to content

fix: support legacy TS configurations (#5) #22

fix: support legacy TS configurations (#5)

fix: support legacy TS configurations (#5) #22

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-node-18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install --frozen-lockfile
- run: yarn ci
# TypeScript NodeNext Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript-nodenext
- run: yarn test
working-directory: ./examples/typescript-nodenext
# TypeScript Legacy Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript-legacy
- run: yarn test
working-directory: ./examples/typescript-legacy
test-node-20:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install --frozen-lockfile
- run: yarn ci
# TypeScript NodeNext Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript-nodenext
- run: yarn test
working-directory: ./examples/typescript-nodenext
# TypeScript Legacy Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript-legacy
- run: yarn test
working-directory: ./examples/typescript-legacy