Update sources-dist-stable.json for go-e (#2996) #2346
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
name: Check stable versions | |
on: | |
workflow_dispatch: | |
push: | |
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@v4 | |
with: | |
node-version: 14 | |
- run: npm i | |
- run: npm run test | |
env: | |
OWN_GITHUB_TOKEN: ${{ secrets.OWN_GITHUB_TOKEN }} |