Skip to content

Bump eslint from 8.51.0 to 8.52.0 #350

Bump eslint from 8.51.0 to 8.52.0

Bump eslint from 8.51.0 to 8.52.0 #350

name: ci-geoserver-node-client
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-tests-maintenance:
runs-on: ubuntu-latest
env:
GEOSERVER_VERSION: 2.22.4
steps:
- name: Install program "wait-for-it"
run: sudo apt install wait-for-it
- uses: actions/checkout@v2
# In this step, this action saves a list of existing images,
# the cache is created without them in the post run.
# It also restores the cache if it exists.
- uses: satackey/action-docker-layer-caching@v0.0.11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- run: docker-compose -f test/docker-compose.yml up -d
# finishes when tomcat of GeoServer is running
- run: wait-for-it "localhost:8080"
# we use wget to ensure that GeoServer is running
- run: wget http://localhost:8080/geoserver/web
- run: npm install
- run: npm run test
run-tests-stable:
runs-on: ubuntu-latest
env:
GEOSERVER_VERSION: 2.23.2
steps:
- name: Install program "wait-for-it"
run: sudo apt install wait-for-it
- uses: actions/checkout@v2
# In this step, this action saves a list of existing images,
# the cache is created without them in the post run.
# It also restores the cache if it exists.
- uses: satackey/action-docker-layer-caching@v0.0.11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
- run: docker-compose -f test/docker-compose.yml up -d
# finishes when tomcat of GeoServer is running
- run: wait-for-it "localhost:8080"
# we use wget to ensure that GeoServer is running
- run: wget http://localhost:8080/geoserver/web
- run: npm install
- run: npm run test