From ce38acfc91b37d4e177688fc4cc4e7ff1c9645a1 Mon Sep 17 00:00:00 2001 From: nicola Date: Mon, 6 Apr 2020 20:36:41 +1000 Subject: [PATCH] Remove github action workflows --- .../continuous-deployment-workflow.yml | 24 ---------------- .github/workflows/nodejs.yml | 28 ------------------- 2 files changed, 52 deletions(-) delete mode 100644 .github/workflows/continuous-deployment-workflow.yml delete mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/continuous-deployment-workflow.yml b/.github/workflows/continuous-deployment-workflow.yml deleted file mode 100644 index 92b1c40..0000000 --- a/.github/workflows/continuous-deployment-workflow.yml +++ /dev/null @@ -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 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index e4997f3..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -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