From cf5f3f4ef80c3090accd80ce573996c0808164a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= Date: Wed, 18 Nov 2020 09:53:20 +0100 Subject: [PATCH] Removing GitHub Actions pipeline as we use Jenkins anyways --- .github/workflows/master-betterzon.yml | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/master-betterzon.yml diff --git a/.github/workflows/master-betterzon.yml b/.github/workflows/master-betterzon.yml deleted file mode 100644 index 52c849d..0000000 --- a/.github/workflows/master-betterzon.yml +++ /dev/null @@ -1,34 +0,0 @@ - -name: Test -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x] - - steps: - - uses: actions/checkout@v1 - - - name: Cache node modules - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: Node ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: npm ci and npm run build - run: | - cd Frontend - npm ci - npm run build