daily builds #422
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: daily builds | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run once daily at 00:00 UTC, ~7/8PM CST | |
- cron: "0 0 * * *" | |
jobs: | |
builds: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
sandbox: | |
[ | |
react/latest/react-18-vite-ts, | |
react/latest/react-18-vite, | |
react/latest/react-17-vite, | |
react/latest/react-16-vite, | |
react/v10/react-17-vite, | |
react/v10/react-16-vite, | |
] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: "18.x" | |
- name: Install dependencies | |
run: | | |
cd ${{ matrix.sandbox }} | |
yarn install | |
- name: Build project | |
run: | | |
cd ${{ matrix.sandbox }} | |
yarn build |