
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
70 lines
1.8 KiB
YAML
70 lines
1.8 KiB
YAML
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
|