Skip to content

chore!: update Angular to version 20 and adjust module resolution settings #103

chore!: update Angular to version 20 and adjust module resolution settings

chore!: update Angular to version 20 and adjust module resolution settings #103

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