mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 03:04:21 +01:00
33 lines
647 B
YAML
33 lines
647 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- production
|
|
pull_request:
|
|
branches-ignore:
|
|
- production
|
|
workflow_dispatch:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: 1.2.21
|
|
|
|
- name: run
|
|
run: |
|
|
git config --global user.email "bot@opencode.ai"
|
|
git config --global user.name "opencode"
|
|
bun install
|
|
bun turbo test
|
|
env:
|
|
CI: true
|