2023-02-13 14:33:27 +00:00
|
|
|
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - main
|
2021-05-25 20:51:21 +01:00
|
|
|
# pull_request:
|
2023-02-13 14:33:27 +00:00
|
|
|
# branches:
|
|
|
|
# - main
|
2021-05-22 13:27:12 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-02-13 14:33:27 +00:00
|
|
|
commitlint:
|
2021-05-22 13:27:12 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-13 14:33:27 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-22 13:27:12 +01:00
|
|
|
with:
|
2023-02-13 14:33:27 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
- uses: wagoid/commitlint-github-action@v5
|
2021-05-22 13:27:12 +01:00
|
|
|
with:
|
2023-02-13 14:33:27 +00:00
|
|
|
configFile: .commitlintrc.js
|
|
|
|
eslint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2025-02-11 17:55:51 +00:00
|
|
|
- uses: pnpm/action-setup@v4
|
2023-02-13 14:33:27 +00:00
|
|
|
with:
|
2025-02-11 17:55:51 +00:00
|
|
|
version: 10
|
2023-02-13 14:33:27 +00:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2025-02-11 17:31:01 +00:00
|
|
|
node-version: 22
|
2023-02-13 14:33:27 +00:00
|
|
|
cache: 'pnpm'
|
|
|
|
- run: pnpm install
|
2023-09-07 02:14:23 +01:00
|
|
|
- run: pnpm run lint
|