mirror of
https://github.com/dstotijn/hetty
synced 2024-11-10 06:04:19 +00:00
16 lines
No EOL
333 B
YAML
16 lines
No EOL
333 B
YAML
name: Lint
|
|
on: [push, pull_request]
|
|
defaults:
|
|
run:
|
|
working-directory: ./admin
|
|
jobs:
|
|
lint-admin:
|
|
runs-on: ubuntu-latest
|
|
name: Admin (Next.js)
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "16"
|
|
- run: yarn install
|
|
- run: yarn run lint |