We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 507177e commit 1f2b518Copy full SHA for 1f2b518
1 file changed
.github/workflows/test.yml
@@ -3,6 +3,21 @@ name: Test
3
on: [push]
4
5
jobs:
6
+ style:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: checkout
10
+ uses: actions/checkout@v2
11
+ with:
12
+ fetch-depth: 0
13
+ - name: Use Node.js ${{ matrix.node-version }}
14
+ uses: actions/setup-node@v2
15
16
+ node-version: ${{ matrix.node-version }}
17
+ - name: Code Style Check
18
+ run: npx -y prettier -c .
19
+ # run: npx @biomejs/biome format . # do this after we move to biome config
20
+
21
build:
22
strategy:
23
fail-fast: false
@@ -19,8 +34,6 @@ jobs:
34
uses: actions/setup-node@v2
35
with:
36
node-version: ${{ matrix.node-version }}
- - name: Code Style Check
- run: npx -y prettier -c .
24
37
- name: Cache Node Dependencies
25
38
id: cache
26
39
uses: actions/cache@v2
0 commit comments