mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-13 18:46:28 +05:00
* feat: setup next, eslint, stylelint, and typescript * ci: add Semantic Pull Requests config * ci: add renovate config * ci: add commit lint workflow * ci: add code lint workflow * ci: add release workflow * docs(ci): add status badges for release, lint, and commitlint * ci: add now config * chore: update repo name * ci(release): remove assets from release
17 lines
333 B
YAML
17 lines
333 B
YAML
name: Commitlint
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Lint commit messages
|
|
uses: wagoid/commitlint-github-action@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|