Skip to content

Commit 080c7a1

Browse files
committed
ci: Add basic format checks in CI
1 parent 7da33da commit 080c7a1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
cache: npm
18+
- name: Install dependencies
19+
run: npm ci
20+
- name: Run Formatting checks
21+
run: npm test

0 commit comments

Comments
 (0)