-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (97 loc) · 2.6 KB
/
ci.yml
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Continuous Integration
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
install_cache:
name: Install code and deps
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node:
- 20
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- run: corepack enable
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies 👨🏻💻
shell: bash
run: cp vidos-config-empty.json vidos-config.json && yarn install --immutable
lint:
needs: install_cache
name: Lint code base
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node:
- 20
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- run: corepack enable
- name: Install code and deps
uses: ./.github/actions/install
- name: Run linter 👀
run: yarn lint
cypress:
needs: install_cache
name: Cypress
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node:
- 20
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- run: corepack enable
- name: Install code and deps
uses: ./.github/actions/install
- name: Install ruby
run: |
sudo apt-get install -y ruby &&
ruby poi_explode.rb cypress/fixtures/teritorio/references/pois.geojson
- name: Prepare
run: cp -R cypress/fixtures/ public/fixtures
- name: Run Cypress Tests 🧪
uses: cypress-io/github-action@v6
env:
CONFIG: vidos-config-cypress.json
CYPRESS: true
with:
build: yarn build
install-command: yarn --immutable --silent
start: node .output/server/index.mjs
wait-on: 'http://127.0.0.1:3000'
wait-on-timeout: 30
- name: Keep failed cypress-screenshots
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
docker:
runs-on: ubuntu-latest
needs: [lint, cypress]
if: github.ref == 'refs/heads/develop'
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Docker Build and Push
uses: cartoway/docker-compose-build-push-action@main
with:
registry_password: ${{ secrets.GITHUB_TOKEN }}