Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'npm'

- name: NPM Install
Expand All @@ -30,10 +30,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'npm'

- name: NPM Install
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "hyperdash-angular-app:build"
"buildTarget": "hyperdash-angular-app:build"
},
"configurations": {
"production": {
"browserTarget": "hyperdash-angular-app:build:production"
"buildTarget": "hyperdash-angular-app:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "hyperdash-angular-app:build"
"buildTarget": "hyperdash-angular-app:build"
}
},
"test": {
Expand Down
Loading