From 9a13b2f82bd4093a561253e396180a85eb660f98 Mon Sep 17 00:00:00 2001 From: Dunsin <78784850+Dun-sin@users.noreply.github.com> Date: Sun, 17 Sep 2023 17:38:42 +0100 Subject: [PATCH] chore: delete build action --- .github/workflows/build.yml | 15 --------------- 1 file changed, 15 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 aecccc70..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Build -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '16' - - name: install dependencies - run: npm ci - - name: run build - run: npm run build