Skip to content

tmp: Add current branch to CI #1

tmp: Add current branch to CI

tmp: Add current branch to CI #1

name: CI
on:
push:
branches: [ main, development, feat/RMET-3980/capacitor-ci ]
pull_request:
types: [opened, synchronize, reopened]
jobs:
setup:
uses: ./.github/workflows/reusable_setup.yml

Check failure on line 11 in .github/workflows/continuous_integration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/continuous_integration.yml

Invalid workflow file

error parsing called workflow ".github/workflows/continuous_integration.yml" -> "./.github/workflows/reusable_setup.yml" (source branch with sha:8a3a7fe83b92b1cb416b7d913e6a437166b1a903) : every step must define a `uses` or `run` key
lint:
needs: 'setup'
uses: ./.github/workflows/reusable_lint.yml
build:
needs: 'setup'
uses: ./.github/workflows/reusable_build.yml
verify-plugin:
needs: ['setup', 'lint', 'build']
runs-on: 'macos-15'
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- working-directory: ./packages/capacitor-plugin
run: npm install
- working-directory: ./packages/capacitor-plugin
run: npm run verify