Skip to content

build(deps): bump marked from 14.1.1 to 14.1.2 #797

build(deps): bump marked from 14.1.1 to 14.1.2

build(deps): bump marked from 14.1.1 to 14.1.2 #797

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