Skip to content

build(deps-dev): bump eslint-plugin-import from 2.29.0 to 2.30.0 #68

build(deps-dev): bump eslint-plugin-import from 2.29.0 to 2.30.0

build(deps-dev): bump eslint-plugin-import from 2.29.0 to 2.30.0 #68

Workflow file for this run

name: SDV Approval Bot Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Installing dependencies
run: npm ci
- name: Linting the commit message
run: npx commitlint -V --from=HEAD~1
- name: Linting the application code
run: npm run lint-bot
- name: Running unit tests
run: npm run unit-test