From 9f42815388ef050cb877e1aa46c06a422d803c6e Mon Sep 17 00:00:00 2001 From: Mincong Huang Date: Wed, 19 May 2021 15:38:13 +0200 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8GitHub=20actions=E4=BD=9C?= =?UTF-8?q?=E4=B8=BACI=20(#477)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create action for Java 8 (Maven) * Create action for Node.js (admin) * Use matrix build for Java * Test Vue --- .github/workflows/main.yml | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..e756ed46 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,67 @@ +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 + Java: + runs-on: ubuntu-latest + strategy: + matrix: + java-version: + - 8 + - 11 + steps: + - uses: actions/checkout@v2 + - name: Set up JDK ${{ matrix.java-version }} + uses: actions/setup-java@v2 + with: + java-version: ${{ matrix.java-version }} + distribution: adopt + - 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 + Node-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 + + Node-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