From e0b15494f469ee739a8b63e9645b59bd4bf98847 Mon Sep 17 00:00:00 2001 From: Stanley Masinde Date: Sun, 2 May 2021 01:18:12 +0300 Subject: [PATCH] Removed tests for now --- .github/workflows/ci.yml | 45 ---------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 66c0f64..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: ci - -on: - push: - branches: - - main - - master - pull_request: - branches: - - main - - master - -jobs: - ci: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [14] - - steps: - - name: Checkout 🛎 - uses: actions/checkout@master - - - name: Setup node env 🏗 - uses: actions/setup-node@v2.1.2 - with: - node-version: ${{ matrix.node }} - check-latest: true - - - name: Cache node_modules 📦 - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install dependencies 👨🏻‍💻 - run: npm ci - - - name: Run linter 👀 - run: npm run lint -