mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-06-02 06:19:36 +02:00
33 lines
659 B
YAML
33 lines
659 B
YAML
name: compatibility
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: "0 9 * * 1"
|
|
|
|
jobs:
|
|
locked:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
- run: npm install
|
|
- run: npm run typecheck
|
|
- run: npm test
|
|
|
|
opencode-latest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
- run: npm install
|
|
- run: npm install --no-save @opencode-ai/plugin@latest
|
|
- run: npm run typecheck
|
|
- run: npm test
|