Skip to content

chore(main): release 1.6.0 #26

chore(main): release 1.6.0

chore(main): release 1.6.0 #26

Workflow file for this run

name: CI tests
on: [pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Install commitlint
run: |
npm install @commitlint/config-conventional
npm install commitlint
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Run tests
run: npm test