Assignment done #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Query 07 | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Use the postgis image to start a postgres service | |
# | |
# See the following links for more information: | |
# https://hub.docker.com/_/postgis | |
# https://docs.github.com/en/actions/guides/about-service-containers | |
# https://docs.github.com/en/actions/guides/creating-postgresql-service-containers | |
services: | |
postgres: | |
image: postgis/postgis | |
env: | |
POSTGRES_PASSWORD: postgres | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- name: Install JS dependencies | |
run: npm install | |
- name: Install GDAL (for ogr2ogr) | |
run: sudo apt install gdal-bin -y | |
- name: Load test data | |
run: __scripts__/load_data.sh | |
- name: Run tests | |
run: | | |
npm test __tests__/test_query07.js |