docs(deps): bump mkdocs-material from 9.4.7 to 9.5.2 #521
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: 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 |