-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (82 loc) · 2.35 KB
/
map.yml
File metadata and controls
88 lines (82 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Map CI
on:
push:
branches: [main]
paths: [map/**]
pull_request:
branches: [main]
paths: [map/**]
defaults:
run:
working-directory: map
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: map/package-lock.json
- run: npm ci
- run: npm run lint
build:
name: Build
runs-on: ubuntu-latest
needs: lint
env:
NEXT_PUBLIC_COVERAGE_API_URL: https://coverage-api.airframes.io
NEXT_PUBLIC_WS_URL: wss://coverage-api.airframes.io/ws
NEXT_PUBLIC_MAP_STYLE_URL: https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: map/package-lock.json
- run: npm ci
- run: npm run build
docker:
name: Docker Build
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: map
push: false
build-args: |
NEXT_PUBLIC_COVERAGE_API_URL=https://coverage-api.airframes.io
NEXT_PUBLIC_WS_URL=wss://coverage-api.airframes.io/ws
cache-from: type=gha,scope=map
cache-to: type=gha,scope=map,mode=max
docker-push:
name: Docker Push
runs-on: ubuntu-latest
needs: docker
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: map
push: true
tags: ghcr.io/airframesio/coverage-map:latest
build-args: |
NEXT_PUBLIC_COVERAGE_API_URL=https://coverage-api.airframes.io
NEXT_PUBLIC_WS_URL=wss://coverage-api.airframes.io/ws
cache-from: type=gha,scope=map
cache-to: type=gha,scope=map,mode=max