Skip to content

Commit

Permalink
ci: add formatting check
Browse files Browse the repository at this point in the history
  • Loading branch information
stas-nc committed Oct 2, 2024
1 parent 5560fb8 commit 37c5386
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@ on:
- "**"

jobs:
common_checks:
name: Common checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.8.0
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Install dependencies
run: npm ci

- name: Check formatting
run: npm run format:check
build_ilc:
name: Build ILC
runs-on: ubuntu-latest
Expand Down

0 comments on commit 37c5386

Please sign in to comment.