-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from oasisprotocol/mz/lint-action
Setup lint workflow
- Loading branch information
Showing
6 changed files
with
392 additions
and
9 deletions.
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | ||
name: ci-lint | ||
|
||
# Trigger the workflow when: | ||
on: | ||
# A push occurs to one of the matched branches. | ||
push: | ||
branches: [master] | ||
# Or when a pull request event occurs for a pull request against one of the | ||
# matched branches. | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
lint: | ||
# NOTE: This name appears in GitHub's Checks API. | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
# Checkout pull request HEAD commit instead of merge commit. | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
# Fetch all history so gitlint can check the relevant commits. | ||
fetch-depth: '0' | ||
- name: Set up Python 3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
- name: Set up Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
cache: yarn | ||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
- name: Install gitlint | ||
run: | | ||
python -m pip install gitlint | ||
- name: Lint documentation | ||
run: | | ||
yarn lint-docs | ||
# Always run this step so that all linting errors can be seen at once. | ||
if: always() | ||
- name: Lint git commits | ||
run: | | ||
yarn lint-git | ||
# Always run this step so that all linting errors can be seen at once. | ||
if: always() | ||
- name: ESLint | ||
# Disallow warnings and always throw errors. | ||
run: yarn lint | ||
# Always run this step so that all linting errors can be seen at once. | ||
if: always() | ||
- name: Validate TypeScript | ||
run: yarn checkTs | ||
# Always run this step so that all linting errors can be seen at once. | ||
if: always() |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# gitlint configuration. | ||
|
||
# For more information, see: | ||
# https://jorisroovers.com/gitlint/configuration/. | ||
|
||
[general] | ||
verbosity = 2 | ||
ignore-merge-commits=true | ||
ignore-fixup-commits=false | ||
ignore-squash-commits=false | ||
ignore=body-is-missing | ||
contrib=contrib-disallow-cleanup-commits | ||
|
||
[title-max-length] | ||
line-length=72 | ||
|
||
[body-max-line-length] | ||
line-length=80 | ||
|
||
[body-min-length] | ||
min-length=20 | ||
|
||
[title-must-not-contain-word] | ||
words=wip |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# markdownlint configuration. | ||
|
||
# For more information, see: | ||
# https://github.com/DavidAnson/markdownlint#optionsconfig. | ||
|
||
# Enable all rules. | ||
default: true | ||
|
||
line-length: | ||
# Line length checking is not strict by default. | ||
strict: true | ||
line_length: 80 | ||
# Allow longer lines for code blocks. | ||
code_block_line_length: 100 | ||
|
||
# Do not always require language specifiers with fenced code blocks since they | ||
# are not part of the Markdown spec. | ||
fenced-code-language: false | ||
|
||
# Allow <details> and <section> HTML elements | ||
no-inline-html: | ||
allowed_elements: ['details', 'summary'] |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// @ts-check | ||
// https://github.com/oasisprotocol/oasis-core/blob/50d972df71fed2bcaa88e6ce5430d919ec08087d/common.mk#L171-L180 | ||
const execSync = require('child_process').execSync | ||
|
||
const GIT_ORIGIN_REMOTE = 'origin' | ||
const RELEASE_BRANCH = 'master' | ||
const BRANCH = `${GIT_ORIGIN_REMOTE}/${RELEASE_BRANCH}` | ||
const COMMIT_SHA = require('child_process').execSync(`git rev-parse ${BRANCH}`).toString().trim() | ||
|
||
console.log(`*** Running gitlint for commits from ${BRANCH} (${COMMIT_SHA})`) | ||
|
||
try { | ||
execSync(`gitlint --commits ${BRANCH}..HEAD`, { stdio: 'inherit' }) | ||
} catch (error) { | ||
process.exit(1) | ||
} |
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
Oops, something went wrong.