Skip to content

Commit 54499d8

Browse files
ANKUR DWIVEDIANKUR DWIVEDI
authored andcommitted
update ci
1 parent 4dcea34 commit 54499d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12+
angular-versions: [ '10','11', '12.2.18', '13', '14', '15', '16', '17' ]
1213
node-version: [14.x]
1314

1415
steps:
@@ -19,7 +20,7 @@ jobs:
1920
node-version: ${{ matrix.node-version }}
2021
- name: npm install, build, and test
2122
run: |
22-
npm install -g @angular/cli@12.2.18
23+
npm install -g @angular/cli@${{ matrix.angular-versions }}
2324
cd sdk
2425
npm install
2526
cd tests/test-apps/sample-server

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ authenticator = async () => {
5959
*Note*: Avoid generating security parameters on the client side. Always send a request to your backend to retrieve security parameters, as the generation of these parameters necessitates the use of your Imagekit `privateKey`, which must not be included in client-side code.
6060

6161
## Version Support
62-
| SDK Version | ANGULAR 10.x | ANGULAR 11.x | ANGULAR 12.2.x | ANGULAR 13.x | ANGULAR 14.x | ANGULAR 15.x | ANGULAR 16.x | ANGULAR 17.x |
62+
| SDK Version | Angular 10.x | Angular 11.x | Angular 12.2.x | Angular 13.x | Angular 14.x | Angular 15.x | Angular 16.x | Angular 17.x |
6363
|-------------|---------|---------|---------|---------|---------|---------|---------|---------|
6464
| 5.x ||| ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |✔️ |
6565
| 4.x | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |||

sdk/tests/sdk-tests/imagekit.service.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { ImagekitioAngularService } from "../../projects/imagekitio-angular/src/lib/imagekitio-angular.service";
2-
// const pjson = require("../../projects/imagekitio-angular/package.json");
32

43
describe("ImagekitService", () => {
54
let imagekitService: ImagekitioAngularService;

0 commit comments

Comments
 (0)