Skip to content

chore(deps): bump @commitlint/travis-cli from 17.6.7 to 17.7.0 #1380

chore(deps): bump @commitlint/travis-cli from 17.6.7 to 17.7.0

chore(deps): bump @commitlint/travis-cli from 17.6.7 to 17.7.0 #1380

Workflow file for this run

name: ci
on:
push:
pull_request:
types: [opened, reopened]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- run: npm ci
- run: npx lockfile-lint --type npm --path package-lock.json --validate-https --allowed-hosts npm
- run: npm run lint