File tree Expand file tree Collapse file tree 5 files changed +815
-0
lines changed Expand file tree Collapse file tree 5 files changed +815
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Node.js CI
2+
3+ on :
4+ pull_request :
5+ branches : [ '**' ]
6+
7+ jobs :
8+ commitlint :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v2
12+ with :
13+ fetch-depth : 0
14+ - uses : actions/setup-node@v2
15+ - run : npm ci
16+ - run : npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches : [main]
4+
5+ name : release
6+
7+ jobs :
8+ release :
9+ if : github.repository == 'ydb-platform/ydb-embedded-ui'
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : yandex-cloud/ui-release-action@main
13+ with :
14+ github-token : ${{ secrets.BOT_TOKEN }}
15+ npm-token : ${{ secrets.NODE_AUTH_TOKEN }}
Original file line number Diff line number Diff line change 1+ module . exports = { extends : [ '@commitlint/config-conventional' ] }
You can’t perform that action at this time.
0 commit comments