Skip to content

Commit

Permalink
ci: add type-check
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Ryall committed Jul 18, 2024
1 parent 68630ea commit 008d862
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Run tests
name: tests
on:
pull_request: ~
push:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Type Check
on:
pull_request: ~
push:
branches:
- main

jobs:
build:
name: Type Check Code Base
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Type Check Code Base
uses: mrcjkb/lua-typecheck-action@v1

0 comments on commit 008d862

Please sign in to comment.