/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.github/workflows/ci.yaml
35 строк
692 B
nichenqin
chore: ci add test
28 окт 2024, 17:01
28 окт 2024, 17:01
0039826
Код
Авторство
О чём код?
name: CI on: push: branches: ['develop'] pull_request: types: [opened, synchronize] jobs: build: name: Build timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below. # env: # TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} # TURBO_TEAM: ${{ secrets.TURBO_TEAM }} env: TZ: UTC steps: - name: Check out code uses: actions/checkout@v4 - name: Setup bun environment uses: oven-sh/setup-bun@v2 - name: Install dependencies run: bun install - name: Run tests run: bun test - name: Build run: bun run build