chore(deps): Bump mkdocs-macros-plugin from 1.3.6 to 1.3.7 #947
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: Build | |
on: | |
push: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Re-use NPM cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Re-use container image layers | |
uses: jpribyl/[email protected] | |
continue-on-error: true | |
- name: Build container image | |
run: > | |
docker compose | |
build | |
--build-arg USER_ID="$(id -u)" | |
--build-arg GROUP_ID="$(id -g)" | |
- name: Install toolchain | |
run: > | |
docker compose | |
run env | |
npm ci | |
- name: Run script | |
run: > | |
docker compose | |
run env | |
npm run docs:build |