Skip to content

build(deps): bump webpack-dev-server and @angular-devkit/build-angular #101

build(deps): bump webpack-dev-server and @angular-devkit/build-angular

build(deps): bump webpack-dev-server and @angular-devkit/build-angular #101

Workflow file for this run

name: Git Lint
on:
pull_request:
branches: [master]
types: [edited, opened, synchronize, reopened]
workflow_dispatch: # enables "Run workflow" button
jobs:
validate-commits:
name: Validate Commit Messages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Gitlint
run: pip install gitlint==0.19.1
- name: Lint PR Commit Messages
if: github.event_name == 'pull_request'
run: echo "${{ github.event.pull_request.title }}" | gitlint
validate-code:
name: Validate Code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint Code
run: |
npm install
npm run lint