Skip to content

Commit a96d69b

Browse files
authored
Update package.json to allow angular 20 (#105)
* update package.json to allow angular 20 * update github workflows
1 parent 980b7ce commit a96d69b

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.github/workflows/check.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,53 @@ name: Check
22
on:
33
push:
44
branches:
5-
- '**'
5+
- "**"
66
jobs:
77
lint:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-node@v2
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
1212
with:
13-
node-version: '16'
14-
cache: 'yarn'
15-
- name: Install dependecies
13+
node-version: "16"
14+
cache: "yarn"
15+
- name: Install dependencies
1616
run: yarn install --frozen-lockfile
1717
- name: Run lint script
1818
run: yarn lint
1919
build:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
23-
- uses: actions/setup-node@v2
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
2424
with:
25-
node-version: '16'
26-
cache: 'yarn'
27-
- name: Install dependecies
25+
node-version: "16"
26+
cache: "yarn"
27+
- name: Install dependencies
2828
run: yarn install --frozen-lockfile
2929
- name: Run build script
3030
run: yarn build
3131
test:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v2
35-
- uses: actions/setup-node@v2
34+
- uses: actions/checkout@v4
35+
- uses: actions/setup-node@v4
3636
with:
37-
node-version: '16'
38-
cache: 'yarn'
39-
- name: Install dependecies
37+
node-version: "16"
38+
cache: "yarn"
39+
- name: Install dependencies
4040
run: yarn install --frozen-lockfile
4141
- name: Run test script
4242
run: yarn test
4343
e2e:
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v2
47-
- uses: actions/setup-node@v2
46+
- uses: actions/checkout@v4
47+
- uses: actions/setup-node@v4
4848
with:
49-
node-version: '16'
50-
cache: 'yarn'
51-
- name: Install dependecies
49+
node-version: "16"
50+
cache: "yarn"
51+
- name: Install dependencies
5252
run: yarn install --frozen-lockfile
5353
- name: Start examples and run e2e tests
5454
run: yarn e2e

packages/widget-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@livechat/widget-core": "^1.3.4"
3131
},
3232
"peerDependencies": {
33-
"@angular/core": "12 || 13 || 14 || 15 || 16 || 17 || 18 || 19",
33+
"@angular/core": "12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20",
3434
"rxjs": "6 || 7"
3535
},
3636
"devDependencies": {

0 commit comments

Comments
 (0)