Skip to content

chore: update dependency @taiga-ui/editor to v4.17.0 (#700) #1693

chore: update dependency @taiga-ui/editor to v4.17.0 (#700)

chore: update dependency @taiga-ui/editor to v4.17.0 (#700) #1693

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: taiga-family/ci/actions/setup/variables@v1.97.0
- uses: taiga-family/ci/actions/setup/node@v1.97.0
- run: npx nx build demo
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run prettier -- --write
npm run stylelint -- --fix
npm run lint -- --fix
else
npm run prettier -- --check
npm run stylelint
npm run lint
fi
- uses: taiga-family/ci/actions/auto/push@v1.97.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true