Skip to content

Merge pull request #307 from sourcectl/renovate/pin-dependencies #1942

Merge pull request #307 from sourcectl/renovate/pin-dependencies

Merge pull request #307 from sourcectl/renovate/pin-dependencies #1942

Workflow file for this run

name: Testing
on:
push:
branches:
- main
paths:
- 'src/**'
- 'public/**'
- 'package.json'
- 'package-lock.json'
- 'astro.config.mjs'
- 'tsconfig.json'
- '.node-version'
- 'Makefile'
- 'netlify.toml'
- '.github/workflows/astro-build.yml'
pull_request:
paths:
- 'src/**'
- 'public/**'
- 'package.json'
- 'package-lock.json'
- 'astro.config.mjs'
- 'tsconfig.json'
- '.node-version'
- 'Makefile'
- 'netlify.toml'
- '.github/workflows/astro-build.yml'
schedule:
- cron: '5 1 * * *' # Run nightly
workflow_dispatch:
jobs:
testing:
name: Astro build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: ".node-version"
- name: Run make clean
run: make clean
- name: Run make init
run: make init
- name: Run make build
run: make build