Build #15273
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
jobs: | |
build: | |
if: github.repository == 'philly-js-club/philly-js-club-website' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- run: pnpm build | |
name: Build | |
on: | |
pull_request: ~ | |
schedule: | |
# Run every hour on minute 14 — 14 picked rather arbitrarily as not on the | |
# top of the hour so that we're not trying to run on GitHub's servers when | |
# every other cron job is trying to run | |
- cron: "14 * * * *" | |
push: | |
branches: | |
- main |