[CI] Add smoke test via GitHub workflow (#1776) #1
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: smoke | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
schedule: # midnight every day | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
env: | |
BASE_REPO: ${{ github.repository }} | |
BRANCH: ${{ github.head_ref }} | |
PR_REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
SHA: ${{ github.sha }} | |
# TODO: drop PR testing under Windows because it's too slow? | |
# if: github.event_name != 'pull_request' && matrix.os != 'windows-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
cache-dependency-path: package.json | |
- run: tools/install-hugo.sh | |
shell: bash | |
- name: Make site (non-PR) | |
if: github.event_name != 'pull_request' | |
run: | | |
mkdir tmp && cd tmp && set -x | |
../tools/make-site.sh -p $BASE_REPO -v $SHA | |
shell: bash | |
- name: Make site from PR | |
if: github.event_name == 'pull_request' | |
run: | | |
mkdir tmp && cd tmp && set -x | |
../tools/make-site.sh -p $PR_REPO -v $BRANCH | |
shell: bash |