Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: add 10min timeout to CI and Release workflows #10

feat: add 10min timeout to CI and Release workflows

feat: add 10min timeout to CI and Release workflows #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Check code quality
run: bun run check
- name: Run tests
run: bun test
- name: Build
run: bun run build