Deleting github workflows

This commit is contained in:
Jason House
2020-07-29 23:21:25 +09:00
parent ae2b358f06
commit 5974b2cca0
2 changed files with 0 additions and 78 deletions

View File

@@ -1,40 +0,0 @@
#name: Build and Deploy
#
#on:
# release
#
#jobs:
# build:
# runs-on: ubuntu-latest
#
# strategy:
# matrix:
# node-version: [10.x]
#
# steps:
# - uses: actions/checkout@master
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm ci
# - run: npm run minify-input-css
# - run: npm run uglifyjs-index-js
# - run: npm run uglifyjs-configuration-js
# - run: npm run uglifyjs-libraries-js
# - run: npm run uglifyjs-recommended-js
# - run: npm run uglifyjs-common-js
# - run: npm run uglifyjs-payload-js
# - run: npm run uglifyjs-mislabeled-js
# - name: Set up JDK 11
# uses: actions/setup-java@v1
# with:
# java-version: 11.0.7
# - name: Build with Maven
# run: mvn clean install spotbugs:check --file pom.xml
# - name: Build Docker
# run: docker build -f Dockerfile -t housewrecker/gaps:latest .
# - name: Update Username and Password
# run: docker login -u="${{ secrets.DOCKER_USERNAME }}" -p="${{ secrets.DOCKER_PASSWORD }}"
# - name: Publish to Registry
# run: docker push housewrecker/gaps:latest

View File

@@ -1,38 +0,0 @@
name: Build and Test
on:
push:
branches-ignore:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run minify-input-css
- run: npm run uglifyjs-index-js
- run: npm run uglifyjs-configuration-js
- run: npm run uglifyjs-libraries-js
- run: npm run uglifyjs-recommended-js
- run: npm run uglifyjs-common-js
- run: npm run uglifyjs-payload-js
- run: npm run uglifyjs-mislabeled-js
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11.0.7
- name: Build with Maven
run: mvn clean install spotbugs:check --file pom.xml
- name: Build Docker
run: docker build -f Dockerfile -t housewrecker/gaps:latest .