From f4a09e305f998e646c38c38f639b4e0618d49e65 Mon Sep 17 00:00:00 2001 From: Josh Black Date: Wed, 9 Dec 2020 15:39:14 -0600 Subject: [PATCH] chore(project): delete ci.yml --- .github/workflows/ci.yml | 25 ------------------------- 1 file changed, 25 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 1706d9d99260..000000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - ci-check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Use Node.js 14.x - uses: actions/setup-node@v1 - with: - node-version: '14.x' - - name: Install dependencies - run: yarn install --offline - - name: Build project - run: yarn build - - name: Run Continuous Integration checks - run: | - yarn ci-check - yarn lerna run ci-check