From c548b3256a8cc60c7cba3229c5f57055622397ce Mon Sep 17 00:00:00 2001 From: Davis Hoang Date: Fri, 3 Jan 2025 23:50:08 +0800 Subject: [PATCH] clean up --- .github/workflows/pullrequest.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 59061e9..f832a54 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -23,24 +23,3 @@ jobs: - name: dotnet test run: dotnet test --verbosity normal - - build_react: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Install React dependencies - run: | - cd QuizApp.Client - npm install - - - name: Build React app - run: | - cd QuizApp.Client - npm run build