Skip to content

fix(github-action): fix commitlint job and fix test related stuff #6

fix(github-action): fix commitlint job and fix test related stuff

fix(github-action): fix commitlint job and fix test related stuff #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
- name: Print versions
run: |
git --version
node --version
npm --version
- name: Install dependencies
run: npm install
- name: Commitlint
run: npx commitlint --from HEAD~1 --to HEAD --verbose
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test