Skip to content

Commit 9d1d5d3

Browse files
committed
ci: Add prettier style check to CI
1 parent c1eab74 commit 9d1d5d3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/style.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Style Check
2+
on: [push]
3+
jobs:
4+
prettier:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v2
9+
with:
10+
node-version: "17"
11+
- run: yarn
12+
- run: yarn run prettier-check

0 commit comments

Comments
 (0)