2022-12-05 22:38:23 +00:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-13 11:17:04 +00:00
|
|
|
- uses: actions/checkout@v3.2.0
|
2022-12-05 22:38:23 +00:00
|
|
|
- uses: actions/setup-node@v3.5.1
|
|
|
|
with:
|
|
|
|
cache: yarn
|
|
|
|
|
|
|
|
- run: yarn
|
2022-12-05 22:44:54 +00:00
|
|
|
- run: yarn run lint-ci
|