Skip to content

Commit cb337a0

Browse files
authored
Merge pull request #847 from sheikhlimon/feat/ci-lint-workflow
Feat/ci: add GitHub Actions workflow for linting
2 parents 73d9ac1 + f56acb9 commit cb337a0

File tree

6 files changed

+25662
-13
lines changed

6 files changed

+25662
-13
lines changed

.github/workflows/lint.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Lint
2+
on: [push, pull_request]
3+
4+
jobs:
5+
lint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-node@v4
10+
with:
11+
node-version: 20
12+
- run: npm ci
13+
- run: npm run lint

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,5 @@ yarn-error.log*
2222
.env
2323
.cursorrule
2424

25-
package-lock.json
26-
2725
# Temporary files
28-
/tmp/
26+
/tmp/

0 commit comments

Comments
 (0)