chore(deps): bump pillow from 10.4.0 to 11.0.0 in the python-packages group #29
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: Test Build Website | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
# Review gh actions docs if you want to further define triggers, paths, etc | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on | |
jobs: | |
build: | |
name: Test Build Docusaurus | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: website/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
working-directory: website | |
- name: Build website | |
run: npm run build | |
working-directory: website | |