Build(deps): Bump astro from 4.16.16 to 5.0.3 #924
Workflow file for this run
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: Testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: '5 1 * * *' # Run nightly | |
workflow_dispatch: | |
jobs: | |
testing: | |
name: Astro build | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.7.0 | |
- name: Run make clean | |
run: make clean | |
- name: Run make init | |
run: make init | |
- name: Run make build | |
run: make build |