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