We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa26b3 commit d333069Copy full SHA for d333069
.github/workflows/action.yml
@@ -23,5 +23,8 @@ jobs:
23
- name: Install npm packages
24
run: npm install
25
26
+ - name: Run formatter
27
+ run: npm run check_format
28
+
29
- name: Run tests
30
run: npm test
README.md
@@ -35,12 +35,17 @@ npm install
35
npm test
36
```
37
38
-5. (Optional) Update the tests (useful when contributing):
+5. Run the code formatter:
39
+```sh
40
+npm run format
41
+```
42
43
+6. (Optional) Update the tests (useful when contributing):
44
```sh
45
npm run update_test
46
47
-6. (Optional) Run the web playground (requires Docker):
48
+7. (Optional) Run the web playground (requires Docker):
49
50
npm run playground
51
0 commit comments