This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Build Nightly #401
This file contains hidden or 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-Adapter-Nightly: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| node: [20.x] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install Packages | |
| run: npm install | |
| - name: Build Library | |
| run: npm run build |