Skip to content

Commit

Permalink
revert to 14.21
Browse files Browse the repository at this point in the history
  • Loading branch information
godber committed Feb 22, 2023
1 parent 5b3ea3e commit 3327d85
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
dist: bionic
os: linux
language: node_js
node_js: '14.17'
node_js: '14.21'
# use a smaller depth for faster builds
git:
depth: 10
Expand All @@ -28,7 +28,7 @@ jobs:
include:
- stage: 'Verify'
name: 'Verify Build (node 14)'
node_js: '14.17'
node_js: '14.21'
# run on any pull_request
if: branch = master AND type IN (pull_request)
# only cache on verify build
Expand Down Expand Up @@ -90,49 +90,49 @@ jobs:
script: yarn --silent test --suite elasticsearch --elasticsearch-version 6.8.6 --elasticsearch-api-version 6.5

- name: 'ES Test Suite (elasticsearch 7) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request) AND commit_message !~ /^WIP/
script: yarn --silent test --suite elasticsearch --elasticsearch-version 7.2.1 --elasticsearch-api-version 7.0 --report-coverage false

- name: 'ES Store Legacy Client (elasticsearch 6) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-store; yarn --silent test:legacy --report-coverage false

- name: 'ES Store ES7 Client (elasticsearch 7) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-store; yarn --silent test:7

- name: 'ES Store Opensearch Client (opensearch 1.3.0) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-store; yarn --silent test:opensearch --report-coverage false

- name: 'ES API Legacy Client (elasticsearch 6) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-api; yarn --silent test:legacy --report-coverage false

- name: 'ES API ES7 Client (elasticsearch 7) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-api; yarn --silent test:7

- name: 'ES API Opensearch Client (opensearch 1.3.0) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests
if: branch = master AND type IN (pull_request, cron) AND commit_message !~ /^WIP/
script: cd ./packages/elasticsearch-api; yarn --silent test:opensearch --report-coverage false

- name: 'End-to-End Test Suite (elasticsearch 6) (node 14)'
node_js: '14.17'
node_js: '14.21'
# run only on pull-requests and cron
if: branch = master AND type IN (pull_request, cron) AND fork = false
script:
Expand All @@ -148,7 +148,7 @@ jobs:
- yarn ts-scripts publish -t prerelease docker

- name: 'Publish packages, docs and experimental docker image'
node_js: '14.17'
node_js: '14.21'
# run a push to master
if: tag IS blank AND branch = master AND type NOT IN (pull_request, cron)
script:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM terascope/node-base:16.19.1-core
FROM terascope/node-base:14.21.3-core

ENV NODE_ENV production

Expand Down

0 comments on commit 3327d85

Please sign in to comment.