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 5edfa55 commit 1721eaeCopy full SHA for 1721eae
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: Run continuous integration tests
2
+
3
+on: [push, pull_request, merge_group]
4
5
+jobs:
6
+ ci:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout the repository
10
+ uses: actions/checkout@v4
11
+ with:
12
+ fetch-depth: 0
13
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@v4
16
17
+ node-version: 20
18
19
+ - name: Install
20
+ run: npm ci
21
22
+ - name: Build
23
+ run: npm run build
24
25
+ - name: Run unit tests
26
+ run: npm run test
27
28
+ - name: Test on generating docs
29
+ run: npm run docs
.github/workflows/commitlint.yml
@@ -1,6 +1,6 @@
name: Run commitlint on git commit messages
-on: [push, pull_request]
jobs:
commitlint:
0 commit comments