Skip to content

Commit 8aa6eab

Browse files
committed
ci
1 parent e2f1f68 commit 8aa6eab

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: node-ci
2+
on: [push]
3+
4+
jobs:
5+
check:
6+
name: Check code
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
12+
- name: Install dependencies
13+
run: yarn
14+
15+
- name: Check exports
16+
run: npm run check-exports
17+
18+
- name: Check prettier
19+
run: npm run check-prettier

0 commit comments

Comments
 (0)