-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update test.yml - limit to repositories
- Loading branch information
Showing
1 changed file
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
name: Check stable versionson: push: branches: - master pull_request: {}concurrency: group: stable-${{ github.head_ref }} cancel-in-progress: truejobs: check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 14 - run: npm i - run: npm run test env: OWN_GITHUB_TOKEN: ${{ secrets.OWN_GITHUB_TOKEN }} | ||
name: Check stable versions | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
branches: | ||
- master | ||
|
||
pull_request: {} | ||
|
||
concurrency: | ||
group: stable-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check: | ||
name: check stable versions | ||
if: | | ||
github.repository == 'ioBroker/ioBroker.repositories' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- run: npm i | ||
- run: npm run test | ||
env: | ||
OWN_GITHUB_TOKEN: ${{ secrets.OWN_GITHUB_TOKEN }} |