Bump the all-dependencies group across 1 directory with 6 updates (#266) #385
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: Docs | |
# why isn't this just on: push: ? | |
# because we want to test different build patterns, that's why | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '.stoat/**' | |
- '.github/workflows/docs.yaml' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '.stoat/**' | |
- '.github/workflows/docs.yaml' | |
defaults: | |
run: | |
working-directory: docs | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
cache-dependency-path: docs | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Download baseline logo image | |
run: curl https://stoat-dev--static.stoat.page/branding/128.png -o build/baseline-logo-128.png | |
- name: Run stoat action | |
uses: ./ | |
if: always() |