From 383f38cb26e2e7356a63ce993b21dc8b3389ce7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD=20=D0=93=D0=B0=D0=B2=D1=80?= =?UTF-8?q?=D0=B8=D0=BB=D0=BE=D0=B2?= Date: Sat, 18 May 2024 18:43:25 +0200 Subject: [PATCH] remove frontend workflow --- .../frontend-build-and-test.dev-branch.yml | 38 ------------------ ...frontend-build-and-test.other-branches.yml | 39 ------------------- 2 files changed, 77 deletions(-) delete mode 100644 .github/workflows/frontend-build-and-test.dev-branch.yml delete mode 100644 .github/workflows/frontend-build-and-test.other-branches.yml diff --git a/.github/workflows/frontend-build-and-test.dev-branch.yml b/.github/workflows/frontend-build-and-test.dev-branch.yml deleted file mode 100644 index 468e325d..00000000 --- a/.github/workflows/frontend-build-and-test.dev-branch.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Build and test backend and frontend for dev branch - -on: - push: - branches: - - dev - - paths: - - science-archive-web/** - -jobs: - build-and-test-frontend: - name: Build and test frontend project - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up NodeJS - uses: actions/setup-node@v1 - with: - node-version: "14.x" - - - name: Install dependencies - working-directory: science-archive-web - run: | - npm cache clean --force - npm install - - - name: Build project - working-directory: science-archive-web - run: npm run build - -# TODO When tests will be created uncomment it -# - name: Test project -# working-directory: science-archive-web -# run: npm run test diff --git a/.github/workflows/frontend-build-and-test.other-branches.yml b/.github/workflows/frontend-build-and-test.other-branches.yml deleted file mode 100644 index 65aa2079..00000000 --- a/.github/workflows/frontend-build-and-test.other-branches.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Build and test backend and frontend for features and fixes branches - -on: - push: - branches: - - feature/** - - fix/** - - paths: - - science-archive-web/** - -jobs: - build-and-test-frontend: - name: Build and test frontend project - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up NodeJS - uses: actions/setup-node@v1 - with: - node-version: "14.x" - - - name: Install dependencies - working-directory: science-archive-web - run: | - npm cache clean --force - npm install - - - name: Build project - working-directory: science-archive-web - run: npm run build - -# TODO When tests will be created uncomment it -# - name: Test project -# working-directory: science-archive-web -# run: npm run test