Skip to content

Commit

Permalink
ci: add lint workflow (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston authored Dec 29, 2023
1 parent 6a8e91c commit e7525b7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint & Test

on:
push:
branches: [main]
pull_request:

jobs:
main:
name: Lint and test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: nekowinston/setup-deno@v1

- name: Check
run: deno check **/*.ts

- name: Lint
run: deno lint --compact

- name: Test
run: deno test --doc
15 changes: 14 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,18 @@
}
]
}
}
},
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "docs", "section": "Documentation" },
{ "type": "build", "section": "Build system & distribution" },
{ "type": "ci", "section": "Continuous Integration", "hidden": true },
{ "type": "style", "section": "Code Style", "hidden": true },
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true }
]
}

0 comments on commit e7525b7

Please sign in to comment.