From c1b5ec548f71c91f89c15951c99d3b3e97b5c40d Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 8 Sep 2021 20:16:45 +0100 Subject: [PATCH] :truck: Renames lint and deploy issue --- .github/workflows/blank.yml | 21 ------------------ .github/workflows/build-deploy-dev-demo.yml | 24 --------------------- 2 files changed, 45 deletions(-) delete mode 100644 .github/workflows/blank.yml delete mode 100644 .github/workflows/build-deploy-dev-demo.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml deleted file mode 100644 index d5be4189..00000000 --- a/.github/workflows/blank.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Lints code merged into master branch -name: Lint Code Base -on: - push: - pull_request: - branches: [master] -jobs: - build: - name: Lint Code Base - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Lint Code Base - uses: github/super-linter@v4 - env: - VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: master - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/build-deploy-dev-demo.yml b/.github/workflows/build-deploy-dev-demo.yml deleted file mode 100644 index 25d65190..00000000 --- a/.github/workflows/build-deploy-dev-demo.yml +++ /dev/null @@ -1,24 +0,0 @@ -# This action builds and deploys the master branch -name: Deploy demo of current version -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - workflow_dispatch: -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 - - name: Install and Build 🔧 - run: | - npm install - npm run build - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@4.1.4 - with: - branch: dev-demo - folder: dist -