Build Nightly #137
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: Build Nightly | |
on: | |
schedule: | |
- cron: '0 18 * * *' # 6pm Daily | |
jobs: | |
TypeBox: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [20.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Packages | |
run: npm install | |
- name: Install TypeScript Latest | |
run: npm install typescript@latest | |
- name: Build TypeBox | |
run: npm run build | |
- name: Install TypeScript Next | |
run: npm install typescript@next | |
- name: Build TypeBox | |
run: npm run build |