do not pass default branch and repo name to coana CLI (#723) #2977
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| tags: | ||
| - '*' | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| permissions: | ||
| contents: read | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| test: | ||
| name: 'Tests' | ||
| uses: SocketDev/workflows/.github/workflows/reusable-base.yml@master | ||
|
Check failure on line 24 in .github/workflows/test.yml
|
||
| with: | ||
| no-lockfile: true | ||
| npm-test-script: 'test-ci' | ||
| node-versions: '20,22,24' | ||
| os: 'ubuntu-latest,windows-latest' | ||