Skip to content

Commit a15033d

Browse files
authored
revert(nucleus): add config back (#5676)
but remove all required downstreams
1 parent 2bef422 commit a15033d

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.nucleus.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
core-deploy:
2+
enabled: true
3+
project-modules:
4+
lwc: lwc.version
5+
branches:
6+
~DEFAULT~:
7+
pull-request: &branch-definition
8+
workflow: build-and-test
9+
auto-start: true
10+
auto-start-from-forks: false
11+
merge-method: disabled # do not auto-merge; we'll do it ourselves
12+
required-downstream-deps:
13+
# none
14+
release:
15+
pull-request:
16+
<<: *branch-definition
17+
# Only active branches need to be included in this config
18+
winter26:
19+
pull-request:
20+
<<: *branch-definition
21+
spring25:
22+
pull-request:
23+
<<: *branch-definition
24+
summer25:
25+
pull-request:
26+
<<: *branch-definition
27+
jobs:
28+
build-and-test:
29+
memory-limit: 16
30+
create-canary-release:
31+
memory-limit: 16
32+
build-dependency:
33+
memory-limit: 16
34+
release:
35+
memory-limit: 16
36+
steps:
37+
node-conformance:
38+
run:
39+
command: yarn run lint
40+
after: node-build
41+
node-unit-tests:
42+
run:
43+
command: yarn test
44+
# this project runs yarn build after yarn install so skip explicit build step
45+
node-build: &node-build
46+
skip: true

0 commit comments

Comments
 (0)