Skip to content

Commit

Permalink
chore: init workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinoTriadi committed Dec 19, 2024
1 parent 186a25a commit b9715b5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/codecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: codecheck

on:
pull_request:
branches:
- develop
types: [opened, synchronize]

jobs:
code-check:
name: Run eslint and typescript check
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Setup bun
uses: bun-action/setup@v3
with:
version: 0.9.0
run_install: true

- name: Run code check
run: bun check

0 comments on commit b9715b5

Please sign in to comment.