Skip to content

env OPENCODE_API_KEY prioritizes over the stored api key #1

env OPENCODE_API_KEY prioritizes over the stored api key

env OPENCODE_API_KEY prioritizes over the stored api key #1

Workflow file for this run

name: welan-test-pr
on:
push:
branches: [welan]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
checks: write
jobs:
test:
name: unit (linux)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: ./.github/actions/setup-bun
- name: Configure git identity
run: |
git config --global user.email "bot@opencode.ai"
git config --global user.name "opencode"
- name: Run unit tests
timeout-minutes: 20
run: bun turbo test
env:
GITHUB_ACTIONS: "false"