From 80a949742b4068e01d0bf44c0b0ac4cccdea487c Mon Sep 17 00:00:00 2001 From: dabico Date: Mon, 10 Jun 2024 14:55:56 +0200 Subject: [PATCH] Temporarily remove workflows --- .github/workflows/maven-build.yml | 21 ----------------- .github/workflows/vue-build.yml | 39 ------------------------------- 2 files changed, 60 deletions(-) delete mode 100644 .github/workflows/maven-build.yml delete mode 100644 .github/workflows/vue-build.yml diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml deleted file mode 100644 index f14a8f85..00000000 --- a/.github/workflows/maven-build.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: 'Build Java files with Maven' - -on: - push: - branches: [ 'main' ] - paths: [ '**/*.java' ] - pull_request: - branches: [ 'main' ] - paths: [ '**/*.java' ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Setup Maven - uses: s4u/setup-maven-action@v1.13.0 - with: - java-version: 11 - java-distribution: 'temurin' - - name: Build with Maven - run: mvn -e --no-transfer-progress package diff --git a/.github/workflows/vue-build.yml b/.github/workflows/vue-build.yml deleted file mode 100644 index c26a1229..00000000 --- a/.github/workflows/vue-build.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: 'Build Vue project' - -on: - push: - branches: [ 'main' ] - paths: - - '**/*.js' - - '**/*.vue' - - '**/*.json' - - '**/*.sass' - pull_request: - branches: [ 'main' ] - paths: - - '**/*.js' - - '**/*.vue' - - '**/*.json' - - '**/*.sass' - -jobs: - build: - runs-on: ubuntu-latest - defaults: - run: - working-directory: ./dl4se-website - steps: - - name: Checkout latest - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: '18' - cache: 'npm' - cache-dependency-path: 'package-lock.json' - - name: Install Dependencies - run: npm ci - - name: Run ESLint - run: npm run lint - - name: Vue Build - run: npm run build