From 17a8813c4b195d919b4a3d89a6b5232aa08f9166 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Sun, 14 Jan 2024 20:13:23 +0100 Subject: [PATCH] chore: Remove build step from CI for cli --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f596c17b..2c537c94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,20 +83,3 @@ jobs: env: CI: false - run: echo "🍏 This job's status is ${{ job.status }}." - build-cli: - runs-on: ubuntu-latest - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '18' - cache: 'yarn' - cache-dependency-path: yarn.lock - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - run: yarn --frozen-lockfile && yarn lerna bootstrap - - run: cd packages/cli && yarn build - - run: echo "🍏 This job's status is ${{ job.status }}."