Skip to content

build(deps-dev): bump the commitlint group with 2 updates #283

build(deps-dev): bump the commitlint group with 2 updates

build(deps-dev): bump the commitlint group with 2 updates #283

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package.json', './package.json') }}
id: cache
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install --prefer-offline
- name: Lint commit message
run: npx commitlint --from=HEAD~1
- name: Run ESLint
run: npm run lint
- name: Type check
run: npm run check
- name: Build
run: npm run build