Remove github action workflows

This commit is contained in:
nicola 2020-04-06 20:36:41 +10:00
parent df02917d5a
commit ce38acfc91
2 changed files with 0 additions and 52 deletions

View File

@ -1,24 +0,0 @@
name: Deployment Workflow
on:
push:
branches:
- master
paths-ignore:
- README.md
jobs:
build-and-deploy:
name: Deploy Website
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: yarn
- run: yarn deploy

View File

@ -1,28 +0,0 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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: yarn
- run: yarn deploy