Skip to content

Commit

Permalink
ci: add workflow to check code with linter and formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Feb 25, 2024
1 parent 824ed49 commit 73daffa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Linting and formatting

on: [ push, pull_request ]

jobs:
lint-format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Linting
run: npm run lint

- name: Formatting
run: npm run prettify

0 comments on commit 73daffa

Please sign in to comment.