mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-26 09:35:52 +00:00
28 lines
No EOL
411 B
YAML
28 lines
No EOL
411 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
node:
|
|
name: Node.js CI
|
|
uses: ./.github/workflows/node.yml
|
|
|
|
mac:
|
|
name: Mac CI
|
|
needs: node
|
|
uses: ./.github/workflows/mac.yml
|
|
|
|
ios:
|
|
name: iOS CI
|
|
needs: node
|
|
uses: ./.github/workflows/ios.yml |