From 002df7c33c33fc4bc0b0025587884ca816e27bb0 Mon Sep 17 00:00:00 2001 From: Ayushman Chhabra Date: Fri, 10 Jun 2022 16:14:28 -0400 Subject: [PATCH] chore(ci): remove github actions --- .github/workflows/ci.yml | 18 ------------------ 1 file changed, 18 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 87f378c5..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: ci -on: - push: - branches: ['*'] - pull_request: - branches: ['*'] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: "npm" - - run: npm ci - - run: npm test