Skip to content

docs(deps): bump mkdocs-material from 9.4.7 to 9.4.9 #504

docs(deps): bump mkdocs-material from 9.4.7 to 9.4.9

docs(deps): bump mkdocs-material from 9.4.7 to 9.4.9 #504

Workflow file for this run

---
name: Pull request build
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Lint and test project
permissions:
checks: write
contents: write
pull-requests: write
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install node 18
uses: actions/setup-node@v4
with:
node-version: '18'
cache: npm
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests and create coverage report
run: npm run tests:rep
- name: Report tests results
if: always()
uses: dorny/[email protected]
with:
name: Unit Tests Run
path: unit-tests-result.json
reporter: mocha-json