Skip to content

Nightly Builds

Nightly Builds #2

name: Nightly Builds
on:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight UTC
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
build-main:
name: Build Main
uses: ./.github/workflows/setup-and-test.yml

Check failure on line 11 in .github/workflows/nightly-builds.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly-builds.yml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly-builds.yml" -> "./.github/workflows/setup-and-test.yml" : failed to fetch workflow: workflow was not found.
with:
branch: main
build-start-here:
name: Build Start Here
uses: ./.github/workflows/setup-and-test.yml
with:
branch: sample-code/start-here
build-module-3:
name: Build Module 3
uses: ./.github/workflows/setup-and-test.yml
with:
branch: sample-code/module-3-my-first-playwright-test
build-module-4:
name: Build Module 4
uses: ./.github/workflows/setup-and-test.yml
with:
branch: sample-code/module-4-interacting-with-elements
build-module-5:
name: Build Module 5
uses: ./.github/workflows/setup-and-test.yml
with:
branch: sample-code/module-5-refactoring