π Twice Daily Build SerenityJS (Latest) #26
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: π Twice Daily Build SerenityJS (Latest) | |
on: | |
schedule: | |
- cron: '0 6,18 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: π₯ Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: π§ Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: π¦ Install Dependencies | |
run: bun install | |
- name: ποΈ Build SerenityJS | |
run: bun run build:latest | |
- name: π€ Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: serenityjs-${{ matrix.os }} | |
path: dist |