From aed1ceefca77aacc4fadd871e4a7e8f77d56b099 Mon Sep 17 00:00:00 2001 From: bitbeckers Date: Wed, 21 Aug 2024 13:59:23 +0200 Subject: [PATCH] chore: cleanup workflow files --- .github/workflows/ci-default.yml | 57 ------------------- ...release-sdk.yml => create-release-sdk.yml} | 0 2 files changed, 57 deletions(-) delete mode 100644 .github/workflows/ci-default.yml rename .github/workflows/{release-sdk.yml => create-release-sdk.yml} (100%) diff --git a/.github/workflows/ci-default.yml b/.github/workflows/ci-default.yml deleted file mode 100644 index 1202a75..0000000 --- a/.github/workflows/ci-default.yml +++ /dev/null @@ -1,57 +0,0 @@ -# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. -name: Build and test -env: - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} - TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - -# Trigger the workflow when: -on: - # A push occurs to one of the matched branches. - pull_request: - branches: - - main - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Cancel in progress jobs on new pushes. -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - lint-and-test: - # NOTE: This name appears in GitHub's Checks API. - name: test - environment: testing - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - # Check out pull request's HEAD commit instead of the merge commit to - # prevent gitlint from failing due to too long commit message titles, - # e.g. "Merge 3e621938d65caaa67f8e35d145335d889d470fc8 into 19a39b2f66cd7a165082d1486b2f1eb36ec2354a". - ref: ${{ github.event.pull_request.head.sha }} - # Fetch all history so gitlint can check the relevant commits. - fetch-depth: "0" - submodules: true - - - run: corepack enable - - - name: Install dependencies - uses: pnpm/action-setup@v4 - - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install - - - name: Build package - run: pnpm build - - - name: Run test - run: pnpm test diff --git a/.github/workflows/release-sdk.yml b/.github/workflows/create-release-sdk.yml similarity index 100% rename from .github/workflows/release-sdk.yml rename to .github/workflows/create-release-sdk.yml