We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00dd87 commit 5ba5009Copy full SHA for 5ba5009
.github/workflows/ci.yml
@@ -65,6 +65,27 @@ jobs:
65
- name: Linter
66
run: npm run lint
67
68
+ format:
69
+ runs-on: ubuntu-latest
70
+
71
+ steps:
72
+ - uses: actions/checkout@v3
73
+ - uses: actions/setup-node@v3
74
+ with:
75
+ node-version: '*'
76
+ check-latest: true
77
+ - run: npm ci
78
79
+ - uses: actions/cache@v3
80
81
+ path: ~/.cache/dprint
82
+ key: ${{ runner.os }}-dprint-${{ hashFiles('package-lock.json', '.dprint.jsonc') }}
83
+ restore-keys: |
84
+ ${{ runner.os }}-dprint-
85
86
+ - name: Check formatting
87
+ run: npx dprint check
88
89
browser-integration:
90
runs-on: ubuntu-latest
91
0 commit comments