Skip to content

Commit

Permalink
Add lint and format check github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
VeskeR committed May 24, 2024
1 parent 91d193f commit 3897757
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Lint

on:
pull_request:
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm ci
- run: npm run lint
- run: npm run format:check

0 comments on commit 3897757

Please sign in to comment.