-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- updated on in ci.yml node version to 18 for setup, but to run using 15 - set ci.yml node version for run to 15 - removed version line from docker-compose.yaml as it is deprecated
- Loading branch information
1 parent
62231f5
commit e789ba3
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js environment | ||
- name: Setup Node.js environment for build | ||
uses: actions/[email protected] | ||
with: | ||
node-version: "15.x" | ||
node-version: "18.x" | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
|
@@ -40,9 +40,19 @@ jobs: | |
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Setup Node.js environment for run | ||
uses: actions/[email protected] | ||
with: | ||
node-version: "15.x" | ||
|
||
- name: Build and test frontend | ||
run: yarn build | ||
|
||
- name: Setup Node.js environment for build | ||
uses: actions/[email protected] | ||
with: | ||
node-version: "18.x" | ||
|
||
- name: E2E testing | ||
run: yarn e2e | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: '3.0' | ||
|
||
services: | ||
grafana: | ||
container_name: 'esnet-networkmap-panel' | ||
|