Skip to content

chore(deps): Bump pymdown-extensions from 10.11.1 to 10.11.2 #318

chore(deps): Bump pymdown-extensions from 10.11.1 to 10.11.2

chore(deps): Bump pymdown-extensions from 10.11.1 to 10.11.2 #318

Workflow file for this run

---
name: Audit
on:
push:
branches:
- main
jobs:
audit:
name: Audit
strategy:
fail-fast: false
matrix:
script:
- system:npm:audit
- system:npm:doctor
- system:npm:outdated
- system:pip:audit
- system:pip:outdated
- wtf
runs-on: ubuntu-latest
continue-on-error: true
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/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 ${{ matrix.script }}