From 80871d661dedff2813b45ec140c0d26b4d2d025c Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 5 Jul 2022 11:59:32 +0200 Subject: [PATCH] Remove .github directory --- .github/dependabot.yml | 8 -------- .github/workflows/ci.yml | 37 ------------------------------------- 2 files changed, 45 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/ci.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index a96934ea..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: 2 -updates: - - package-ecosystem: npm - directory: '/' - schedule: - interval: weekly - time: '03:00' - timezone: Europe/Berlin diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 6677e98c..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: 'CI' - -on: - push: - branches: - - main - - v3 - pull_request: - branches: - - '**' - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: Cache node modules - uses: actions/cache@v3 - env: - cache-name: cache-node-modules - with: - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}- - - - run: npm ci --legacy-peer-deps - - run: npm test - - run: npm run build - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}