MAN-274 add unit test for make page title utility function #1288
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
name: Check | |
# Check source code before merging | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint changes | |
uses: github/super-linter/slim@v7 | |
env: | |
DEFAULT_BRANCH: main | |
VALIDATE_ALL_CODEBASE: false # changes only | |
VALIDATE_BASH: true | |
VALIDATE_BASH_EXEC: true | |
VALIDATE_DOCKERFILE_HADOLINT: true | |
VALIDATE_GITHUB_ACTIONS: true | |
VALIDATE_RUBY: true | |
VALIDATE_XML: true | |
VALIDATE_YAML: true | |
LINTER_RULES_PATH: / | |
GITHUB_ACTIONS_CONFIG_FILE: .github/actionlint.yml | |
GITHUB_ACTIONS_COMMAND_ARGS: -ignore=SC.+:info:.+ | |
GITHUB_TOKEN: ${{ github.token }} |