File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Derived from planetiler (Apache License)
2+ # https://github.com/onthegomap/planetiler/blob/main/.github/workflows/maven.yml
3+
4+ name : Render Tests CI
5+
6+ on :
7+ push :
8+ branches : [ main ]
9+ pull_request :
10+ branches : [ main ]
11+
12+ jobs :
13+ render_tests :
14+ name : Render tests
15+ runs-on : ubuntu-latest
16+ timeout-minutes : 15
17+ steps :
18+ - uses : actions/checkout@v3
19+ - name : Set up JDK 21
20+ uses : actions/setup-java@v3
21+ with :
22+ java-version : 21
23+ distribution : ' temurin'
24+ cache : ' maven'
25+ - uses : actions/setup-node@v3
26+ with :
27+ node-version-file : ' render-tests/.nvmrc'
28+ - name : Generate PMTiles
29+ working-directory : render-tests
30+ run : ./generate_pmtiles.sh
31+ - name : Build styles
32+ run : npm ci && npm run build
33+ working-directory : styles
34+ - name : Build render tests
35+ run : npm ci && npm run build
36+ working-directory : render-tests
37+ - name : Run render tests
38+ run : npm run test
39+ working-directory : render-tests
40+
You can’t perform that action at this time.
0 commit comments