Skip to content

Commit 557912e

Browse files
author
Michael Levin
committed
[Feature] Add GitHub Actions workflow for linting
1 parent 3dcd17c commit 557912e

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)