add check pr workflow
This commit is contained in:
parent
21ad8c59d0
commit
3d2789a730
1 changed files with 25 additions and 0 deletions
25
.github/workflows/checkPR.yml
vendored
Normal file
25
.github/workflows/checkPR.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Run Checks and Tests on PR
|
||||
|
||||
on: pull_request
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Bun
|
||||
uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
bun-version: latest
|
||||
|
||||
- name: Install Dependencies
|
||||
id: build
|
||||
run: |
|
||||
bun install
|
||||
|
||||
- name: Run Checks
|
||||
run: |
|
||||
bun run check
|
||||
Loading…
Add table
Add a link
Reference in a new issue