Improvements: Switch to Biome, Updated workflow action versions, Angular 19 support #18
Workflow file for this run
This file contains 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: Pull_Request_Validation | |
on: | |
pull_request: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
build-library: | |
name: Build Library | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://npm.pkg.github.com/ | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build Library | |
run: npm run lib:build | |
build-demo-app: | |
name: Build Demo App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build Demo app | |
run: npm run build | |
verify-changelog: | |
name: Verify Changelog | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Changelog Reader | |
uses: mindsers/[email protected] | |
with: | |
# Path to the CHANGELOG file containing the log entries | |
path: ./projects/ng-infinite-scroll/CHANGELOG.md | |
# Specifies if the CHANGELOG.md file should be validated and the behavior of the action | |
validation_level: error |