Skip to content

Commit 8f23871

Browse files
Merge pull request #163 from contentstack/enh/dx-7527-migrate-bulk-operation-v1
Enh/dx 7527 migrate-rte bulk-operation v1
2 parents 137f9ae + deb123e commit 8f23871

125 files changed

Lines changed: 30866 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/config/release.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"launch": false,
2121
"branches": false,
2222
"apps-cli": false,
23+
"bulk-operations": false,
2324
"core": false
2425
}
2526
}

.github/workflows/release-production-plugins.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@ jobs:
103103
package: ./packages/contentstack-migration/package.json
104104
tag: latest
105105

106+
# Migrate RTE
107+
- name: Publishing migrate RTE (Production)
108+
uses: JS-DevTools/npm-publish@v3
109+
with:
110+
token: ${{ secrets.NPM_TOKEN }}
111+
package: ./packages/contentstack-migrate-rte/package.json
112+
tag: latest
113+
106114
# Seed
107115
- name: Publishing seed (Production)
108116
uses: JS-DevTools/npm-publish@v3
@@ -127,6 +135,14 @@ jobs:
127135
package: ./packages/contentstack-bulk-publish/package.json
128136
tag: latest
129137

138+
# Bulk Operations
139+
- name: Publishing bulk operations (Production)
140+
uses: JS-DevTools/npm-publish@v3
141+
with:
142+
token: ${{ secrets.NPM_TOKEN }}
143+
package: ./packages/contentstack-bulk-operations/package.json
144+
tag: latest
145+
130146
# Branches
131147
- name: Publishing branches (Production)
132148
uses: JS-DevTools/npm-publish@v3

.github/workflows/unit-test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,11 @@ jobs:
6969
- name: Run tests for Contentstack Apps CLI
7070
working-directory: ./packages/contentstack-apps-cli
7171
run: npm run test:unit:report:json
72+
73+
- name: Run tests for Contentstack Migrate RTE
74+
working-directory: ./packages/contentstack-migrate-rte
75+
run: npm test
76+
77+
- name: Run tests for Contentstack Bulk Operations
78+
working-directory: ./packages/contentstack-bulk-operations
79+
run: npm test

0 commit comments

Comments
 (0)