Skip to content

Commit

Permalink
Merge pull request #138 from netceteragroup/chore/update-angular-to-v…
Browse files Browse the repository at this point in the history
…ersion-17

Chore/update angular to version 17
  • Loading branch information
velinovskav authored Jan 30, 2024
2 parents fd9d352 + b9c360d commit bf82616
Show file tree
Hide file tree
Showing 11 changed files with 10,985 additions and 9,765 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:

strategy:
matrix:
node-version: [ 18.10.x ]
node-version: [ 20.9.x ]

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: cache node modules
id: cache-nodemodules
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
Expand All @@ -51,7 +51,7 @@ jobs:
- name: test
run: npm run test:lib-coverage
- name: test report
uses: coverallsapp/github-action@1.1.3
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -60,7 +60,7 @@ jobs:

- name: deploy
if: success() && github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4.2.2
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "data-grid-demo:build"
"buildTarget": "data-grid-demo:build"
},
"configurations": {
"production": {
"browserTarget": "data-grid-demo:build:production"
"buildTarget": "data-grid-demo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "data-grid-demo:build"
"buildTarget": "data-grid-demo:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit bf82616

Please sign in to comment.