/
githubmirror
/
json-server
Обзор
Документация
Войти
/
githubmirror
/
json-server
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/node.js.yml
18 строк
399 B
typicode
chore: add linting step to Node.js workflow (#1715)
27 фев 2026, 01:47
Не верифицирован
27 фев 2026, 01:47
cc3a31e
Код
Авторство
О чём код?
name: Node.js CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: pnpm/action-setup@v4 with: version: 10 - uses: actions/setup-node@v6 with: node-version: "22.x" cache: "pnpm" - run: pnpm install - run: pnpm run lint - run: pnpm run typecheck - run: pnpm test