Skip to content

Commit 54bf5c9

Browse files
chore: add schema validator ci
1 parent 48ab612 commit 54bf5c9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci-schema-validator
2+
on:
3+
push:
4+
branches: [main]
5+
paths:
6+
- 'packages/schema-validator/**'
7+
pull_request:
8+
branches: ['*']
9+
paths:
10+
- 'packages/schema-validator/**'
11+
12+
jobs:
13+
ci:
14+
runs-on: ubuntu-latest
15+
defaults:
16+
run:
17+
working-directory: ./packages/schema-validator
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: actions/setup-node@v2
21+
with:
22+
node-version: 18.x
23+
- run: yarn install --frozen-lockfile
24+
- run: yarn build
25+
- run: yarn test

0 commit comments

Comments
 (0)