feat: JS runtime #121
Workflow file for this run
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
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
name: Validate Title Workflow | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- main | |
jobs: | |
validate-title: | |
name: Validate title job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code into the directory | |
uses: actions/checkout@v3 | |
- name: Ensure the scripts are not broken | |
run: make test:scripts | |
- name: Run the validation script on the title | |
run: ./tools/scripts/validate-conventional-style.sh "${{ github.event.pull_request.title }}" |