Skip to content

chore(deps-dev): bump @commitlint/config-conventional from 17.6.6 to 17.6.7 #594

chore(deps-dev): bump @commitlint/config-conventional from 17.6.6 to 17.6.7

chore(deps-dev): bump @commitlint/config-conventional from 17.6.6 to 17.6.7 #594

Workflow file for this run

name: Test successful build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v2
- name: Setup Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
- name: Cache Node.js modules 💾
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Run typecheck, lint and tests 🧪
run: npm run check
- name: Build artifacts 🏗️
run: npm run build