Skip to content

🚀 release: v1.1.0 #28

🚀 release: v1.1.0

🚀 release: v1.1.0 #28

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, dev]
push:
branches: [main, dev]
workflow_call:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build packages
run: bun run build:packages
- name: Build plugins
run: bun run build:plugins
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build packages
run: bun run build:packages
- name: Build plugins
run: bun run build:plugins
- name: Run tests (with retry for Bun runtime segfaults)
uses: nick-fields/retry@v3
with:
max_attempts: 3
timeout_minutes: 10
command: bun test
package:

Check failure on line 54 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 54, Col: 3): Error calling workflow 'warengonzaga/tinyclaw/.github/workflows/package.yml@86ea7f578dcbb65fb0dabf5b7302fc9277a3f24c'. The workflow is requesting 'packages: write, pull-requests: write', but is only allowed 'packages: none, pull-requests: none'.
needs: test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/package.yml
secrets: inherit
container:
needs: test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/container.yml
secrets: inherit