Skip to content

build(deps-dev): bump @commitlint/config-conventional from 17.6.5 to 17.6.6 #20

build(deps-dev): bump @commitlint/config-conventional from 17.6.5 to 17.6.6

build(deps-dev): bump @commitlint/config-conventional from 17.6.5 to 17.6.6 #20

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache dependencies
uses: actions/cache@v3
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