Video Lease UI #2612
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{github.event.pull_request.head.sha || github.sha}} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- name: Docker Compose Build | |
run: docker compose up --build -d postgis | |
- name: Docker API Build | |
run: docker compose build api | |
- name: Docker API Lint | |
run: docker run cloudtak-api:latest sh -c "npm install --include=dev && npm run lint" | |
- name: Docker API Test | |
run: docker run --network cloudtak_default | |
-e "POSTGRES=postgres://docker:docker@postgis:5432/gis" | |
cloudtak-api:latest npm test | |
- name: Docker Cleanup | |
run: docker compose kill |