Skip to content

Commit

Permalink
Merge pull request #194 from selemxmn/angular18
Browse files Browse the repository at this point in the history
Angular 18 Support
  • Loading branch information
Core121 authored Dec 4, 2024
2 parents d363a96 + ef9ce1c commit 69699a5
Show file tree
Hide file tree
Showing 10 changed files with 9,591 additions and 9,329 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/PullRequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pull Request Checker

on:
pull_request:
branches:
- master

concurrency:
group: ${{github.repository_id}}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-npm:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.11.0

- name: Install npm dependencies
run: npm ci

- name: Run tests
run: npm run test
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ This directive makes printing your HTML sections smooth and easy in your Angular
| 1.3.x | 15.0.0 |
| 1.4.x | 16.0.0 |
| 1.5.x | 17.0.0 |
| 2.x.x | 18.0.0 |

### Note
The versioning strategy has been updated from incrementing minor versions (1.5.x) to using major versions (2.x.x). This change ensures that npm update will no longer automatically upgrade to an unsupported Angular version. Previously, this was overlooked, leading to potential compatibility issues. Starting with version 2.x.x, we are addressing this oversight to ensure better version management going forward.

## Setup

**1-** In your root application folder run:
Expand Down
Loading

0 comments on commit 69699a5

Please sign in to comment.