fix: better s3source for pmtiles #39
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:integration | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- '.github/workflows/test:integration.yml' | |
workflow_dispatch: | |
jobs: | |
integrationtest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- name: start server | |
run: docker compose up -d | |
- name: run test | |
run: | | |
npm ci | |
npm run test:integration |