Skip to content

Commit

Permalink
add ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lucarin91 committed Dec 4, 2024
1 parent f922030 commit 25f0013
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/fmt-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Format Check

on: [push, pull_request]

jobs:
fmt-check:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '23'

- name: Install dev dependencies
run: npm install --only=dev

- name: Run format check
run: npm run fmt-check

0 comments on commit 25f0013

Please sign in to comment.