/
anv
/
hackathon
Обзор
Документация
Войти
/
anv
/
hackathon
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ci.yml
23 строки
411 B
ANV
initialize repository
23 мар 2025, 15:59
23 мар 2025, 15:59
7a393d3
Код
Авторство
О чём код?
name: CI on: push: branches: [main] pull_request: jobs: verify_files: name: Verify Files runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Node uses: actions/setup-node@v3 with: node-version: 18 cache: npm - name: Install Packages run: npm ci - name: Lint and typecheck run: npm run lint