CI Test #339
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 Test | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# https://crontab.guru/#0_10_*_*_0 | |
- cron: '0 10 * * 0' | |
pull_request: | |
jobs: | |
lint: | |
name: Lint files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: npm run lint | |
ts-min: | |
name: Minimal TS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: npm install | |
- run: npm install typescript@5.0.2 | |
- run: npm run tsc | |
ts-current: | |
name: Current TS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: npm install | |
- run: npm run tsc | |
- run: npm run test | |
- run: npm run bundle-dts | |
ts-next: | |
name: The next TS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- run: npm install | |
- run: npm install typescript@next | |
- run: npm run tsc | |
- run: npm run test | |
- run: npm run bundle-dts |