[WC-2915][WC-2850] readonly resize module and fullscreen editor height and add code mirror #3858
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
name: Run Sigrid CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
sigridci: | |
if: vars.ENABLE_SIGRID == 'yes' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Download Sigrid CI | |
run: "git clone https://github.com/Software-Improvement-Group/sigridci.git sigridci" | |
- name: Only publish to Sigrid without waiting for results | |
if: github.event_name == 'push' | |
env: | |
SIGRID_CI_TOKEN: ${{ secrets.SIGRID_CI_TOKEN }} | |
run: "./sigridci/sigridci/sigridci.py --customer mendix --system mendix-web-widgets --source ./packages --publishonly" | |
- name: Run Sigrid CI without publishing | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
env: | |
SIGRID_CI_TOKEN: ${{ secrets.SIGRID_CI_TOKEN }} | |
run: "./sigridci/sigridci/sigridci.py --customer mendix --system mendix-web-widgets --source ./packages" | |
- name: Save Sigrid CI results | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
path: "sigrid-ci-output/**" | |
retention-days: 7 | |
if-no-files-found: ignore | |
- name: "Sigrid pull request feedback" | |
# Disable comments for now | |
if: ${{ false }} | |
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
with: | |
message-id: sigrid | |
message-path: sigrid-ci-output/feedback.md |