Skip to content

build(deps): bump @commitlint/load from 17.7.2 to 18.0.0 #462

build(deps): bump @commitlint/load from 17.7.2 to 18.0.0

build(deps): bump @commitlint/load from 17.7.2 to 18.0.0 #462

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@v3
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