/
githubmirror
/
ydb-embedded-ui
Обзор
Документация
Войти
/
githubmirror
/
ydb-embedded-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ci.yml
41 строка
1 KB
Anton Standrik
ci: cancel superseded pull request workflows (#4227)
12 авг 2026, 13:23
Не верифицирован
12 авг 2026, 13:23
197c98f
Код
Авторство
О чём код?
name: Node.js CI on: pull_request: merge_group: types: [checks_requested] concurrency: group: ${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.run_attempt == '1' && github.event.pull_request.number) || github.run_id }} cancel-in-progress: ${{ github.event_name == 'pull_request' && github.run_attempt == '1' }} jobs: verify_files: name: Verify Files runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-node@v4 with: node-version: 24 cache: npm - run: npm ci - run: npm run typecheck - run: npm run lint - run: npm run build:embedded # check that build works - run: npm run package # check that package build works unit_tests: name: Unit Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-node@v4 with: node-version: 24 - run: npm ci - run: npm test