Skip to content

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.4.3 #107

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.4.3

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.4.3 #107

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 .