Skip to content

Commit

Permalink
Merge pull request #25 from anx-prochiner/master
Browse files Browse the repository at this point in the history
angular v13 compatibility
  • Loading branch information
nezhar authored Dec 16, 2021
2 parents 844b1ab + 7e671c5 commit 73d0569
Show file tree
Hide file tree
Showing 38 changed files with 776 additions and 16,136 deletions.
84 changes: 12 additions & 72 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,84 +8,23 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ["14"]
angular: ["~10.0.0", "~10.1.0", "~10.2.0", "~11.0.0", "~11.1.0", "~11.2.0" ,"~12.0.0", "~12.1.0", "~12.2.0"]
typescript: ["~3.9.0","~4.0.0", "~4.1.0", "~4.2.0", "~4.3.0"]
node: ["14.15"]
angular: ["~12.0.0", "~12.1.0", "~12.2.0", "~13.0.0"]
typescript: ["~4.2.2", "~4.4.4"]

exclude:
- angular: "~10.0.0"
typescript: "~4.0.0"
- angular: "~10.0.0"
typescript: "~4.1.0"
- angular: "~10.0.0"
typescript: "~4.2.0"
- angular: "~10.0.0"
typescript: "~4.3.0"

- angular: "~10.1.0"
typescript: "~4.1.0"
- angular: "~10.1.0"
typescript: "~4.2.0"
- angular: "~10.1.0"
typescript: "~4.3.0"

- angular: "~10.2.0"
typescript: "~4.1.0"
- angular: "~10.2.0"
typescript: "~4.2.0"
- angular: "~10.2.0"
typescript: "~4.3.0"

- angular: "~11.0.0"
typescript: "~3.9.0"
- angular: "~11.0.0"
typescript: "~4.1.0"
- angular: "~11.0.0"
typescript: "~4.2.0"
- angular: "~11.0.0"
typescript: "~4.3.0"

- angular: "~11.1.0"
typescript: "~3.9.0"
- angular: "~11.1.0"
typescript: "~4.1.0"
- angular: "~11.1.0"
typescript: "~4.2.0"
- angular: "~11.1.0"
typescript: "~4.3.0"

- angular: "~11.2.0"
typescript: "~3.9.0"
- angular: "~11.2.0"
typescript: "~4.1.0"
- angular: "~11.2.0"
typescript: "~4.2.0"
- angular: "~11.2.0"
typescript: "~4.3.0"


- angular: "~12.0.0"
typescript: "~3.9.0"
- angular: "~12.0.0"
typescript: "~4.0.0"
- angular: "~12.0.0"
typescript: "~4.1.0"
- angular: "~12.0.0"
typescript: "~4.3.0"
typescript: "~4.4.4"

- angular: "~12.1.0"
typescript: "~3.9.0"
- angular: "~12.1.0"
typescript: "~4.0.0"
- angular: "~12.1.0"
typescript: "~4.1.0"
typescript: "~4.4.4"

- angular: "~12.2.0"
typescript: "~3.9.0"
- angular: "~12.2.0"
typescript: "~4.0.0"
- angular: "~12.2.0"
typescript: "~4.1.0"
typescript: "~4.4.4"

- angular: "~13.0.0"
typescript: "~4.2.2"

steps:
- name: Checkout code
Expand All @@ -97,15 +36,16 @@ jobs:
node-version: ${{ matrix.node }}
cache: npm

- name: Install dependencies
- name: Install dependencies (${{ matrix.angular }}, ${{ matrix.typescript }})
run: npm install

- run: npm install typescript@${{ matrix.typescript }}
- run: npm install @angular/common@${{ matrix.angular }}
- run: npm install @angular/compiler@${{ matrix.angular }}
- run: npm install @angular/compiler-cli@${{ matrix.angular }}
- run: npm install @angular/core@${{ matrix.angular }}
- run: npm install @angular/platform-browser@${{ matrix.angular }}
- run: npm install @angular/platform-browser-dynamic@${{ matrix.angular }}
- run: npm install typescript@${{ matrix.typescript }}

- name: Run tests
run: npm run test-ci
Expand Down
Loading

0 comments on commit 73d0569

Please sign in to comment.