-
Notifications
You must be signed in to change notification settings - Fork 7.2k
69 lines (65 loc) · 1.76 KB
/
main.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
name: Actions
on: [push, pull_request]
jobs:
# Building and testing Java with Maven
# https://docs.github.com/en/actions/guides/building-and-testing-java-with-maven
Litemall-all:
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- 8
- 8.0.192
- 11
- 11.0.3
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: zulu
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
# Building and testing Node.js
# https://docs.github.com/en/actions/guides/building-and-testing-nodejs
Litemall-admin:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 10.x
- 12.x
- 14.x
# - 15.x
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm --prefix litemall-admin install
- run: npm --prefix litemall-admin run test
Litemall-vue:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 10.x
- 12.x
- 14.x
# - 15.x
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm --prefix litemall-vue install
- run: npm --prefix litemall-vue run test