Skip to content

build(deps): update hds from v3.7.0 to v3.8.0 #32

build(deps): update hds from v3.7.0 to v3.8.0

build(deps): update hds from v3.7.0 to v3.8.0 #32

Workflow file for this run

name: linkedevents-ui-ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install commitlint
run: |
yarn add @commitlint/config-conventional
yarn add @commitlint/cli
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npx commitlint --last --verbose
- 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