-
Notifications
You must be signed in to change notification settings - Fork 2
executable file
·176 lines (148 loc) · 4.38 KB
/
test_suite.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: Test suite
on:
push:
branches:
- master
- develop
pull_request:
jobs:
lintcode:
name: Javascript lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:code
lintstyle:
name: SCSS lint
runs-on: ubuntu-latest
needs: [lintcode]
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:style
lintdocs:
name: documentation lint
runs-on: ubuntu-latest
needs: [lintcode,lintstyle]
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:markdown
tests:
name: Meteor ${{ matrix.meteor }} tests
runs-on: ubuntu-latest
needs: [lintcode,lintstyle,lintdocs]
steps:
# CHECKOUTS
- name: Checkout
uses: actions/checkout@v4
- name: Checkout leaonline:corelib repo
uses: actions/checkout@v4
with:
repository: leaonline/corelib
path: github/corelib
- name: Checkout leaonline:service-registry repo
uses: actions/checkout@v4
with:
repository: leaonline/service-registry
path: github/service-registry
# -------------------------------------------------------------------------
# We will need those repose later when the respective features are added
# -------------------------------------------------------------------------
# - name: Checkout leaonline:testing repo
# uses: actions/checkout@v4
# with:
# repository: leaonline/testing
# path: github/testing
# - name: Checkout leaonline:utils repo
# uses: actions/checkout@v4
# with:
# repository: leaonline/utils
# path: github/utils
# - name: Checkout leaonline:ui repo
# uses: actions/checkout@v4
# with:
# repository: leaonline/ui
# path: github/ui
# - name: Checkout leaonline:service-registry repo
# uses: actions/checkout@v4
# with:
# repository: leaonline/service-registry
# path: github/service-registry
- name: Checkout leaonline:theme repo
uses: actions/checkout@v4
with:
repository: leaonline/theme
path: github/theme
# CACHING
- name: Install Meteor
id: cache-meteor-install
uses: actions/cache@v4
with:
path: ~/.meteor
key: v3-meteor-${{ hashFiles('.meteor/versions') }}
restore-keys: |
v3-meteor-
- name: Cache NPM dependencies
id: cache-meteor-npm
uses: actions/cache@v4
with:
path: ~/.npm
key: v3-npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
v3-npm-
- name: Cache Meteor build
id: cache-meteor-build
uses: actions/cache@v4
with:
path: |
.meteor/local/resolver-result-cache.json
.meteor/local/plugin-cache
.meteor/local/isopacks
.meteor/local/bundler-cache/scanner
key: v3-meteor_build_cache-${{ github.ref }}-${{ github.sha }}
restore-key: |
v3-meteor_build_cache-
- name: Setup meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: '2.8.1'
- run: meteor npm install
- run: sh ./test.sh -o # o = once