Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #KN-979 feat: Angular version updated to 16 #86

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2ae6058
Issue #KN-979 feat: updated the package lock json
HarishGangula Feb 26, 2024
019144c
Issue #KN-979 feat: updated the package lock json
HarishGangula Feb 26, 2024
406e176
Issue #KN-979 feat: updated the package lock json
HarishGangula Feb 26, 2024
a501112
Issue #KN-979 feat: Migration from 9 to 10
HarishGangula Feb 26, 2024
3a0e4ab
Issue #KN-979 feat: Migration from 10 to 11
HarishGangula Feb 26, 2024
015cae2
Issue #KN-979 feat: Migration from 10 to 11
HarishGangula Feb 26, 2024
b9e1317
Issue #KN-979 feat: Migration from 11 to 12
HarishGangula Feb 26, 2024
fe3b9ce
Issue #KN-979 feat: Migration from 11 to 12
HarishGangula Feb 26, 2024
c7da691
Issue #KN-979 feat: Migration from 12 to 13
HarishGangula Feb 26, 2024
286db8a
Issue #KN-979 feat: player sdk angular version 13 publishing
HarishGangula Feb 26, 2024
88c22bc
Issue #KN-979 chore: updated the circleci to auto publish package
HarishGangula Feb 27, 2024
09ae14e
Issue #KN-979 chore: updated the circleci image tag
HarishGangula Mar 6, 2024
6438313
Issue #KN-979 feat: Updated the linting lib to eslint
HarishGangula Mar 6, 2024
afbc6c2
Issue #KN-979 test: fixed test cases
HarishGangula Mar 6, 2024
d88024c
Issue #KN-979 chore: updated the build script
HarishGangula Mar 7, 2024
d202d4b
Issue #KN-979 chore: updated the build script
HarishGangula Mar 7, 2024
07a94ed
Issue #KN-979 test: test case fixes
HarishGangula Mar 8, 2024
0f8a5af
Issue #KN-979 chore: simple change to trigger build
HarishGangula Mar 8, 2024
b679119
Issue #KN-979 chore: Updated the build steps
HarishGangula Mar 8, 2024
d5e9dc4
Merge branch 'release-6.0.0' into angular-version-13
HarishGangula Mar 8, 2024
cbde0f1
Issue #KN-979 feat: updated the package version
HarishGangula Mar 8, 2024
7c37e07
Merge remote-tracking branch 'upstream/release-6.0.0' into angular-ve…
HarishGangula Mar 8, 2024
bae386b
Issue #KN-979 feat: eslint version update
HarishGangula Mar 8, 2024
ac190a5
Issue #KN-979 feat: Angular version updated to 14
HarishGangula Mar 8, 2024
bb2391f
Merge remote-tracking branch 'upstream/release-6.0.0' into angular-ve…
HarishGangula Mar 8, 2024
5226f64
Issue #KN-979 feat: Angular version updated to 15
HarishGangula Mar 8, 2024
d142ed9
Issue #KN-979 feat: Angular version updated to 15
HarishGangula Mar 8, 2024
2bddff7
Issue #KN-979 feat: Package version change
HarishGangula Mar 8, 2024
b519b7d
Merge remote-tracking branch 'upstream/release-6.0.0' into angular-ve…
HarishGangula Mar 8, 2024
330b7a8
Issue #KN-979 feat: Angular eslint version to 16
HarishGangula Mar 11, 2024
e8a8e44
Issue #KN-979 feat: Angular version updated to 16
HarishGangula Mar 11, 2024
290cd5a
Merge remote-tracking branch 'upstream/release-6.0.0' into angular-ve…
HarishGangula Mar 11, 2024
1053c77
Issue #KN-979 feat: Merge issue with base branch
HarishGangula Mar 11, 2024
3fbc63b
Issue #KN-979 fix: Node js version in CircleCI
HarishGangula Mar 11, 2024
4d01e10
Issue #KN-979 fix: npm install
HarishGangula Mar 11, 2024
c8c3bea
Issue #KN-979 fix: Node js version in CircleCI
HarishGangula Mar 11, 2024
46d1f56
Issue #KN-979 fix: CircleCI steps updated
HarishGangula Mar 11, 2024
f4dc9f4
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
ef8cc49
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
aea9eaf
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
cd42723
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
a044e6f
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
373bc63
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
d8d19ef
Issue #KN-979 fix: chrome driver install fix
HarishGangula Mar 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
version: 2.1
orbs:
browser-tools: circleci/[email protected]
jobs:
build:
working_directory: ~/sunbird-player-sdk
docker:
- image: circleci/node:16.13.1-browsers
- image: cimg/node:20.4.0-browsers
steps:
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- run:
command: |
google-chrome --version
chromedriver --version
name: Check install
- checkout:
path: ~/sunbird-player-sdk
- run:
name: Show current branch
command: echo ${CIRCLE_BRANCH}
- run:
name: Install depedencies
command: npm install
command: npm install --legacy-peer-deps
- run:
name: Linting the library
command: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
}
}
Loading