Skip to content

[FEATURE] Lancer les tests Modulix dans une github action (PIX-16245) #25

[FEATURE] Lancer les tests Modulix dans une github action (PIX-16245)

[FEATURE] Lancer les tests Modulix dans une github action (PIX-16245) #25

name: Test Modulix content
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
defaults:
run:
working-directory: api
jobs:
test-modulix-content:
if: contains(github.event.pull_request.labels.*.name, 'contribution-modulix')
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
- name: Install dependencies
run: npm clean-install
- id: tests
name: Run Modulix Tests
run: |
npm run modulix:test 2>&1 | tee test_output.log
echo "TEST_ERRORS<<EOF" >> $GITHUB_ENV
cat test_output.log >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
# run: |
# npm run modulix:test && exit 0 || tee test_output.log
# echo "TEST_ERRORS<<EOF" >> $GITHUB_ENV
# cat test_output.log >> $GITHUB_ENV
# echo "EOF" >> $GITHUB_ENV
# exit 1
- name: Comment PR with Test Modulix Error details
if: ${{ failure() }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `Les tests Modulix ont échoué. Voici les détails :
\`\`\`
${process.env.TEST_ERRORS}
\`\`\``
})