chore: Add issue templates and workflows

This commit is contained in:
Luan
2024-10-24 09:02:21 -03:00
parent 3f0ddc0555
commit 5cec3e9b5f
7 changed files with 197 additions and 0 deletions

18
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run lint