From 3eaacc51919943d5621cdba910c660042a15dc5e Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Thu, 11 Jul 2024 17:10:04 +0300 Subject: [PATCH] chore: add build workflow --- .github/workflows/build.yml | 20 +++++++++++++++++++ .../{build_and_deploy.yml => deploy.yml} | 0 2 files changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml rename .github/workflows/{build_and_deploy.yml => deploy.yml} (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..a51900c52 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: ⚙️ Build lib +on: + pull_request: + push: + branches: + - v1 + +jobs: + build: + name: Build package + runs-on: ubuntu-latest + steps: + - uses: taiga-family/ci/actions/setup/checkout@v1.65.3 + - uses: taiga-family/ci/actions/setup/variables@v1.65.3 + - uses: taiga-family/ci/actions/setup/node@v1.65.3 + - run: npx nx build + +concurrency: + group: build-${{ github.head_ref }} + cancel-in-progress: true diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/deploy.yml similarity index 100% rename from .github/workflows/build_and_deploy.yml rename to .github/workflows/deploy.yml