Skip to content

Commit

Permalink
ci: Create Lint CI job (#2110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Apr 15, 2024
1 parent c435272 commit 0576f56
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,20 @@ jobs:
- run: npm ci
- name: Check Docs
run: npm run docs
check-lint:
name: Lint
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
timeout-minutes: 30
Expand All @@ -55,7 +69,6 @@ jobs:
node-version: ${{ matrix.NODE_VERSION }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm test -- --maxWorkers=4
- run: npm run test:mongodb
env:
Expand Down

0 comments on commit 0576f56

Please sign in to comment.