Skip to content

build(deps): bump marked from 15.0.4 to 15.0.5 #912

build(deps): bump marked from 15.0.4 to 15.0.5

build(deps): bump marked from 15.0.4 to 15.0.5 #912

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
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests
run: npm test