Skip to content

Upgrade dependencies and node version #366

Upgrade dependencies and node version

Upgrade dependencies and node version #366

Workflow file for this run

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: 18
- name: Setup cache
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/docs/node_modules
key: ${{ runner.os }}-node-18-${{ hashFiles('docs/yarn.lock') }}
- 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()