chore(deps): update dependency @tinkoff/tui-editor to v1.2.0 #12205
Workflow file for this run
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: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup global variables | |
uses: ./.github/actions/variables | |
- name: Setup Node.js and Cache | |
uses: ./.github/actions/nodejs | |
- name: Run build libraries and check it | |
run: | | |
npm run run-many:build:libs | |
npx ts-node ./scripts/check-dist.ts | |
concurrency: | |
group: build-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |