Skip to content

chore(deps): update commitlint monorepo to v19 (major) #2119

chore(deps): update commitlint monorepo to v19 (major)

chore(deps): update commitlint monorepo to v19 (major) #2119

Workflow file for this run

---
name: CI Check
on:
# Trigger the workflow on push or pull request,
# but only for the `master` branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
# oldest supported
- 11.x
# current LTS
- 14.x
# Latest available
# - 15.x
name: Node v${{ matrix.node-version }} ${{ matrix.install-option }}
steps:
- uses: actions/checkout@v3
- name: Setting up Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: |
npm ci
- name: lint
run: |
./scripts/npm_run_time.sh lint
- name: build
run: |
./scripts/npm_run_time.sh build
- name: test
run: |
./scripts/npm_run_time.sh test
npm run upload-code-coverage
- name: Push statistics to SeriesCI
# more info about `success` condition https://github.1git.demunity/t/how-to-implement-an-after-success-action/16919/8
if: ${{ success() }}
run: |
scripts/seriesci.sh ${{ secrets.SERIESCI_TOKEN }}