Skip to content

Commit

Permalink
feat(ci): add format check pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ab7z committed Aug 13, 2024
1 parent 8b1c3ce commit 249bbf0
Show file tree
Hide file tree
Showing 4 changed files with 3,260 additions and 5 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/format-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: format-lint.yaml

on:
push:
branches-ignore:
- master

jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npm run format:check
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.idea
lib
node_modules
package-lock.json
Loading

0 comments on commit 249bbf0

Please sign in to comment.