Skip to content

chore(deps-dev): bump @commitlint/config-conventional (#300) #688

chore(deps-dev): bump @commitlint/config-conventional (#300)

chore(deps-dev): bump @commitlint/config-conventional (#300) #688

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16.x', '18.x']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies and build (with cache)
uses: bahmutov/npm-install@v1
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build
- name: CodeCov
uses: codecov/codecov-action@v3.1.2