mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-05-01 22:20:52 -05:00
15.x Node
This commit is contained in:
@@ -3,18 +3,21 @@ on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [15.x]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: 'Use Node.js 14.x'
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '14.x'
|
||||
node-version: '${{ matrix.node-version }}'
|
||||
- run: npm ci
|
||||
- name: 'Minify'
|
||||
- name: Minify
|
||||
uses: ./minify
|
||||
- name: 'Set up JDK 11'
|
||||
- name: Set up JDK 11
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: '11.0.9'
|
||||
- name: 'Build with Maven'
|
||||
- name: Build with Maven
|
||||
run: mvn clean install
|
||||
Reference in New Issue
Block a user