Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/config/release.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"launch": false,
"branches": false,
"apps-cli": false,
"bulk-operations": false,
"core": false
}
}
16 changes: 16 additions & 0 deletions .github/workflows/release-production-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ jobs:
package: ./packages/contentstack-migration/package.json
tag: latest

# Migrate RTE
- name: Publishing migrate RTE (Production)
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/contentstack-migrate-rte/package.json
tag: latest

# Seed
- name: Publishing seed (Production)
uses: JS-DevTools/npm-publish@v3
Expand All @@ -127,6 +135,14 @@ jobs:
package: ./packages/contentstack-bulk-publish/package.json
tag: latest

# Bulk Operations
- name: Publishing bulk operations (Production)
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/contentstack-bulk-operations/package.json
tag: latest

# Branches
- name: Publishing branches (Production)
uses: JS-DevTools/npm-publish@v3
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,11 @@ jobs:
- name: Run tests for Contentstack Apps CLI
working-directory: ./packages/contentstack-apps-cli
run: npm run test:unit:report:json

- name: Run tests for Contentstack Migrate RTE
working-directory: ./packages/contentstack-migrate-rte
run: npm test

- name: Run tests for Contentstack Bulk Operations
working-directory: ./packages/contentstack-bulk-operations
run: npm test
Loading
Loading