From 87ae5a6497b02e6e949901920d49bce0b3e9e2db Mon Sep 17 00:00:00 2001 From: Jack Humphries <66338222+JackHumphries9@users.noreply.github.com> Date: Fri, 16 Apr 2021 15:12:10 +0100 Subject: [PATCH] Delete .github directory --- .github/workflows/main.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b91453e..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,38 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - pull_request: - branches: [ master ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: macOS-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - name: Use Node.js 14 - - uses: actions/setup-node@v1 - with: - node-version: '14' - - # Installs all node modules - - name: Install Dependencies - run: npm i - - # Runs the build script - - name: Run the build script - run: ./build.sh