Skip to content

docs: create LICENSE file with MIT License to the project #16

docs: create LICENSE file with MIT License to the project

docs: create LICENSE file with MIT License to the project #16

Workflow file for this run

name: Linting
on: pull_request
jobs:
lint:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/hydrogen"
cache: npm
- run: npm ci
- run: npm run lint:prettier:check
commitlint:
name: Commit Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "lts/hydrogen"
cache: npm
- run: npm ci
- run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose