Merged
Conversation
- Update campaign schema import path to use correct module path - Clean up assignment schema parameters formatting - Fix spin removal to use removeSpins method for consistency - Simplify GraphQL query parameter definitions
- Fixed typo in CampaignListResponse type name in campaign schema - Updated getDonates query to use direct parameter structure for consistency
Co-authored-by: orshih <orshih943@gmail.com>
…FieldsInDetail components
…merDetail with improved layout
Comment on lines
+19
to
+69
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v2 | ||
| with: | ||
| version: 8 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
|
|
||
| - name: Install dependencies | ||
| run: pnpm install | ||
|
|
||
| - name: Set environment variables | ||
| run: | | ||
| echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV | ||
| echo "SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-7)" >> $GITHUB_ENV | ||
| - name: Build shared module | ||
| run: pnpm nx build erxes-api-shared | ||
|
|
||
| - name: Build loyalty_api | ||
| run: pnpm nx build loyalty_api | ||
|
|
||
| # Buildx setup | ||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@v3 | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
||
| - name: Login to Docker Hub | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
| password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
|
||
| - name: Build and push Docker image (multi-platform) | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| uses: docker/build-push-action@v5 | ||
| with: | ||
| context: . | ||
| file: backend/plugins/loyalty_api/Dockerfile | ||
| push: true | ||
| platforms: linux/amd64,linux/arm64 | ||
| tags: | | ||
| erxes/erxes-next-loyalty_api:latest | ||
| erxes/erxes-next-loyalty_api:${{ env.DATE }}-${{ env.SHORT_SHA }} |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
|
Enkhtuvshin0513
pushed a commit
that referenced
this pull request
Feb 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




No description provided.