We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe4d91a commit 544899aCopy full SHA for 544899a
.github/workflows/ui-development.yml
@@ -0,0 +1,35 @@
1
+name: UI-Development
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ quality-check:
10
+ permissions:
11
+ contents: "read"
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Check out code
15
+ uses: actions/checkout@v3
16
17
+ - name: Install dependencies
18
+ run: npm ci
19
20
+ - name: Run quality and typing checks
21
+ run: make quality
22
23
+ precommit-check:
24
25
26
27
28
29
30
31
32
33
34
+ - name: Run pre-commit checks
35
+ run: npx husky run pre-commit
0 commit comments