/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
.github/workflows/check-code-style.yml
26 строк
644 B
Italo José
Merge pull request #14112 from meteor/release-3.5
02 июл 2026, 15:46
Не верифицирован
02 июл 2026, 15:46
ebbdd06
Код
Авторство
О чём код?
name: Check code-style on: push: paths: - 'packages/**' - 'npm-packages/meteor-installer/**' pull_request: paths: - 'packages/**' - 'npm-packages/meteor-installer/**' concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: check-code-style: runs-on: oss-vm steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 24.x - run: npm ci - name: Check formatting with oxfmt run: npx oxfmt --ignore-path .fmtignore --check . - name: Run lint with oxlint run: npm run lint