Skip to content

Update mkdocs-macros-plugin requirement from ~=0.7.0 to ~=1.0.2 #322

Update mkdocs-macros-plugin requirement from ~=0.7.0 to ~=1.0.2

Update mkdocs-macros-plugin requirement from ~=0.7.0 to ~=1.0.2 #322

Workflow file for this run

---
name: Lint
on:
push:
jobs:
lint:
name: Lint
strategy:
fail-fast: false
matrix:
script:
- markdown
- spelling
- wording
- ec
- json
- yaml
- cpd
- docker-compose
- dockerfile
- jenkinsfile
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Re-use NPM cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Pull container base image
run: >
docker-compose
pull
- name: Re-use container image layers
uses: jpribyl/action-docker-layer-caching@v0.1.1
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 test:${{ matrix.script }}