From 1f4834622144dacf384a87cf00fcec00659051f6 Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Thu, 21 Nov 2024 00:04:28 -0500 Subject: [PATCH] chore: don't need this --- .github/workflows/build.yml | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index d75a6f6..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: build - -on: - pull_request: - push: - branches: - - main - - '*-patch' - -jobs: - determine-node-versions: - outputs: - nodeVersions: ${{ steps.determine-node-versions.outputs.nodeVersions }} - runs-on: ubuntu-latest - steps: - - uses: salesforcecli/github-workflows/.github/actions/determineNodeVersions@main - id: determine-node-versions - with: - nodeVersionOverride: ${{ vars.NODE_VERSION_OVERRIDE }} # default is 'lts/*' and 'lts/-1' - nodeDisableCurrent: ${{ vars.UT_DISABLE_NODE_CURRENT }} # default is falsy - nodeDisablePrevious: ${{ vars.UT_DISABLE_NODE_PREVIOUS }} # default is falsy - - build: - needs: determine-node-versions - strategy: - matrix: - node_version: ${{ fromJSON(needs.determine-node-versions.outputs.nodeVersions) }} - fail-fast: false - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node_version }} - - - run: yarn install - - - run: yarn build