From 1e10af42b532d1e9705f1ecd9063b5e6d8cc4a36 Mon Sep 17 00:00:00 2001 From: Timo De Meyst Date: Tue, 25 Mar 2025 22:31:18 +0100 Subject: [PATCH] actions: overbodige testing workflow verwijderd testing.yml is opgesplitst in frontend-testing.yml en backend-testing.yml --- .github/workflows/testing.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml deleted file mode 100644 index 20e7d221..00000000 --- a/.github/workflows/testing.yml +++ /dev/null @@ -1,32 +0,0 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs - -name: Testing - -on: - push: - branches: [ "dev" ] - pull_request: - branches: [ "dev" ] - types: ["synchronize", "ready_for_review", "opened", "reopened"] - -jobs: - test: - name: Run unit tests - if: '! github.event.pull_request.draft' - runs-on: [self-hosted, Linux, X64] - - strategy: - matrix: - node-version: [22.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - - steps: - - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run test:unit