build(deps): bump webpack-dev-server and @angular-devkit/build-angular #101
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |