We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39660ae commit 047af10Copy full SHA for 047af10
.github/workflows/ci-check.yaml
@@ -37,6 +37,27 @@ jobs:
37
- name: Build (check)
38
run: bun run build
39
40
+ license-check:
41
+ name: license-check 📜
42
+ runs-on: ubuntu-latest
43
+
44
+ steps:
45
+ - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
46
47
+ - name: Setup Node.js
48
+ uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
49
+ with:
50
+ node-version: '20'
51
52
+ - name: Install license-checker
53
+ run: npm install -g license-checker
54
55
+ - name: Run license checker
56
+ run: |
57
+ license-checker --production \
58
+ --onlyAllow "MIT;Apache-2.0" \
59
+ --summary
60
61
# Special job that allows some of the jobs to be skipped or failed
62
# requiring others to be successful
63
pr-checks:
0 commit comments