Skip to content

Commit c31d090

Browse files
authored
Merge pull request #137 from levinmr/feature/add_ci_linting
[Feature] Add GitHub Actions workflow for linting
2 parents 3dcd17c + 557912e commit c31d090

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
push:
3+
pull_request:
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Code Checkout
10+
uses: actions/checkout@v4
11+
- name: Install Node
12+
uses: actions/setup-node@v4
13+
with:
14+
node-version: "lts/*"
15+
cache: 'npm'
16+
- name: Install node dependencies
17+
run: npm ci --timing
18+
- name: Lint javascript
19+
run: npm run lint

0 commit comments

Comments
 (0)