Skip to content

chore(deps-dev): bump rollup from 4.1.5 to 4.2.0 #866

chore(deps-dev): bump rollup from 4.1.5 to 4.2.0

chore(deps-dev): bump rollup from 4.1.5 to 4.2.0 #866

Workflow file for this run

name: Conventional Commits
on: [push]
jobs:
commitlint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup node env 🏗
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ matrix.node }}
- name: Cache node_modules 📦
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies ☁
run: npm ci
- name: Lint commit messages 👀
run: npx commitlint --from=HEAD~1