Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hill <john.c.hill@nasa.gov>2022-02-16 01:08:53 +0300
committerGitHub <noreply@github.com>2022-02-16 01:08:53 +0300
commitf40398807e6a4364a55fcb5ca062c8abc5514a5f (patch)
tree678192a2c50fc321857b160dff675cc9f97c581b /.github
parent81f440e1e61d12384485a0e7c9bc5f4b13fa552e (diff)
[CI] Update CI to use node16 by default (#4868)
* Update node versions to 16 * New Line Co-authored-by: unlikelyzero <jchill2@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/e2e-pr.yml2
-rw-r--r--.github/workflows/e2e-visual.yml2
-rw-r--r--.github/workflows/e2e.yml2
-rw-r--r--.github/workflows/lighthouse.yml4
-rw-r--r--.github/workflows/npm-prerelease.yml4
5 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/e2e-pr.yml b/.github/workflows/e2e-pr.yml
index 31846e884..d1f3e2e79 100644
--- a/.github/workflows/e2e-pr.yml
+++ b/.github/workflows/e2e-pr.yml
@@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
- node-version: '14'
+ node-version: '16'
- run: npx playwright install-deps
- run: npm install
- run: npm run test:e2e:full
diff --git a/.github/workflows/e2e-visual.yml b/.github/workflows/e2e-visual.yml
index 25b05b96a..c59c053e6 100644
--- a/.github/workflows/e2e-visual.yml
+++ b/.github/workflows/e2e-visual.yml
@@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
- node-version: '14'
+ node-version: '16'
- run: npx playwright install-deps
- run: npm install
- name: Run the e2e visual tests
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index bcde03a7f..c8d27c8ee 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -15,7 +15,7 @@ jobs:
ref: ${{ github.event.inputs.version }}
- uses: actions/setup-node@v2
with:
- node-version: '14'
+ node-version: '16'
- run: npm install
- name: Run the e2e tests
run: npm run test:e2e:ci
diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml
index 4a67227c0..8d5e74728 100644
--- a/.github/workflows/lighthouse.yml
+++ b/.github/workflows/lighthouse.yml
@@ -15,6 +15,6 @@ jobs:
ref: ${{ github.event.inputs.version }}
- uses: actions/setup-node@v2
with:
- node-version: '14'
+ node-version: '16'
- run: npm install && npm install -g @lhci/cli #Don't want to include this in our deps
- - run: lhci autorun \ No newline at end of file
+ - run: lhci autorun
diff --git a/.github/workflows/npm-prerelease.yml b/.github/workflows/npm-prerelease.yml
index 9230bfff1..d8de3e479 100644
--- a/.github/workflows/npm-prerelease.yml
+++ b/.github/workflows/npm-prerelease.yml
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
- node-version: 14
+ node-version: 16
- run: npm install
- run: npm test
@@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
- node-version: 14
+ node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm publish --access public --tag unstable