-
Notifications
You must be signed in to change notification settings - Fork 31
94 lines (90 loc) · 2.64 KB
/
Copy pathmain.yml
File metadata and controls
94 lines (90 loc) · 2.64 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
89
90
91
92
93
94
name: CI
on:
push:
pull_request:
types: [opened, reopened]
jobs:
frontend-lint:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
package:
- packages/react-components
- templates/base-app/frontend
- templates/compare-data/frontend
- templates/contribute-data/frontend
- templates/explore-data/frontend
- templates/monitor-activities/frontend
- templates/run-computation/frontend
- templates/search-data-repositories/frontend
defaults:
run:
working-directory: ${{ matrix.package }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install taskflow dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Run Prettier
if: ${{ matrix.package != 'packages/react-components' }}
run: npm run prettier
cypress-tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
package:
- templates/base-app/frontend
- templates/compare-data/frontend
- templates/contribute-data/frontend
- templates/explore-data/frontend
- templates/monitor-activities/frontend
- templates/run-computation/frontend
- templates/search-data-repositories/frontend
defaults:
run:
working-directory: ${{ matrix.package }}
steps:
- name: Checkout
uses: actions/checkout@v4
# Install npm dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: templates/base-app/frontend
browser: chrome
start: npm start
backend-lint:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
package:
- templates/base-app/backend
- templates/compare-data/backend
- templates/contribute-data/backend
- templates/explore-data/backend
- templates/monitor-activities/backend
- templates/run-computation/backend
- templates/search-data-repositories/backend
defaults:
run:
working-directory: ${{ matrix.package }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --extra dev
- name: Lint with ruff
run: uv run ruff check .
- name: Format with ruff
run: uv run ruff format . --check