Skip to content

build(deps-dev): bump markdownlint-cli2 from 0.9.2 to 0.11.0 #106

build(deps-dev): bump markdownlint-cli2 from 0.9.2 to 0.11.0

build(deps-dev): bump markdownlint-cli2 from 0.9.2 to 0.11.0 #106

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: |
npm i
env:
CI: true
- name: Lint JavaScript and JSON files
run: |
npm run lint
env:
CI: true
- name: Build with Docker
run: docker build .