From f7b6004a14de5194f72c69744a0db38af88eb631 Mon Sep 17 00:00:00 2001 From: Dennis Melzer Date: Wed, 28 Aug 2024 12:01:21 +0200 Subject: [PATCH] Remove build --- .github/workflows/build.yml | 41 ------------------------------------- 1 file changed, 41 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 3547cff..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: 'Build' - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Git - run: | - git config user.name github-actions - git config user.email github-actions@github.com - - - name: Cache node modules - uses: actions/cache@v4 - env: - cache-name: cache-node-modules - with: - path: ~/.npm - key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-${{ env.cache-name }}- - ${{ runner.os }}- - - name: Setup NodeJs - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - cache-dependency-path: '**/package-lock.json' - - name: Build - run: npm install - - name: Build - run: npm run build