Skip to content

chore: remove unnecessary action step name #2

chore: remove unnecessary action step name

chore: remove unnecessary action step name #2

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
lint:
needs: 'setup'
uses: ./.github/workflows/reusable_lint.yml
build:
needs: 'setup'
uses: ./.github/workflows/reusable_build.yml

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/continuous_integration.yml (Line: 19, Col: 11): Secret THE_GH_RELEASE_TOKEN is required, but not provided while calling.
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