Skip to content

Commit

Permalink
TERR-364
Browse files Browse the repository at this point in the history
- 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
sanchezelton committed May 29, 2024
1 parent 62231f5 commit e789ba3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.0'

services:
grafana:
container_name: 'esnet-networkmap-panel'
Expand Down

0 comments on commit e789ba3

Please sign in to comment.