Skip to content

Commit

Permalink
Merge pull request #75 from nasa/EDSC-3828
Browse files Browse the repository at this point in the history
EDSC-3828: Update edsc-timeline to use Node 18
  • Loading branch information
eudoroolivares2016 authored Aug 8, 2023
2 parents 5f91bcb + b099105 commit 78ff8cb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/gallium']
node-version: ['lts/hydrogen']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/gallium']
node-version: ['lts/hydrogen']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -49,7 +49,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/gallium']
node-version: ['lts/hydrogen']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -81,7 +81,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ cypress-coverage
cypress/screenshots
cypress/videos
cypress/fixtures/example.json
.vscode
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/gallium
lts/hydrogen
3 changes: 2 additions & 1 deletion example/src/components/Playground/Playground.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ export const Playground = () => {

<div className="demo__code">
<p>
This example shows a timeline with three rows of data, a temporal range and a focused interval included.
This example shows a timeline with three rows of data,
a temporal range and a focused interval included.
</p>
<pre>
<code className="jsx">
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "Earthdata Search Components: Timeline",
"main": "dist/index.js",
"description": "Timeline component used by Earthdata Search",
"version": "1.1.6",
"version": "1.1.7",
"scripts": {
"build": "webpack",
"start": "webpack serve --config example/webpack.config.js --mode development",
Expand Down

0 comments on commit 78ff8cb

Please sign in to comment.