diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml deleted file mode 100644 index b45ef4cfa1..0000000000 --- a/.github/workflows/ci_cd.yml +++ /dev/null @@ -1,33 +0,0 @@ -# name of your github action -name: CI -# this will help you specify where to run -on: - push: - branches: - # this will run on the electron branch - - develop -# this is where the magic happens, each job happens in parallel btw -jobs: - build_on_mac: - runs-on: macOS-latest - steps: - - uses: actions/checkout@master - with: - ref: develop - - uses: actions/setup-node@master - with: - node-version: 16 - - name: see directory - run: ls - - build_on_win: - runs-on: windows-2016 - steps: - - uses: actions/checkout@master - with: - ref: develop - - uses: actions/setup-node@master - with: - node-version: 16 - - name: see directory - run: ls \ No newline at end of file