-
Notifications
You must be signed in to change notification settings - Fork 15
61 lines (54 loc) · 1.36 KB
/
userscript-qa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Pull Request
on:
pull_request:
push:
jobs:
qa:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Select NodeJS version
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4
with:
# renovate: datasource=docker depName=node versioning=node
node-version: "20.10.0"
- run: yarn install --immutable
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all
- run: yarn kitten-scientists:build
- run: yarn workspace @kitten-science/action-commit-validator tsc --build
- uses: ./packages/action-commit-validator
with:
accept_breaking_changes: false
accept_emoji: false
accepted_scopes: |
bonfire
religion
science
space
time
trade
village
workshop
api
build
container
core
deps
deps-dev
filters
i18n
settings
ui
accepted_types: |
chore
ci
docs
feat
fix
refactor
test
repo_token: ${{ secrets.GITHUB_TOKEN }}