From 07ea3dc212f9a8aceecee0c0577c40c3a74c38d6 Mon Sep 17 00:00:00 2001 From: Eddie Jaoude Date: Fri, 12 Jul 2024 19:29:11 +0100 Subject: [PATCH] fix: removed build action --- .github/workflows/build.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index aff6fd9..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Build -on: - push: - branches: main - pull_request: - branches: main -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: latest - - name: Install dependencies - run: npm ci - - name: Run build - run: npm run build