chore(deps): update dependency @taiga-ui/cspell-config to v0.13.0 (#546) #1071
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-packages: | |
name: Packages | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Node.js and Cache | |
uses: taiga-family/ci/actions/[email protected] | |
- name: Build packages | |
run: npx nx run-many --target build --all --exclude=demo | |
build-demo: | |
name: Demo | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Node.js and Cache | |
uses: taiga-family/ci/actions/[email protected] | |
- name: Build demo application for Github Pages | |
run: npx nx build-gh-pages | |
concurrency: | |
group: build-${{ github.head_ref }} | |
cancel-in-progress: true |