[FEATURE] Lancer les tests Modulix dans une github action (PIX-16245) #44
Workflow file for this run
This file contains 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: 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: | | |
set +e -o pipefail | |
npm run modulix:test 2>&1 | tee test_output.log | |
ERROR_CODE=$? | |
echo "TEST_ERRORS<<EOF" >> $GITHUB_ENV | |
cat test_output.log >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
exit $ERROR_CODE | |
- name: Comment PR with Test Modulix Error details | |
uses: actions/github-script@v6 | |
if: ${{ failure() }} | |
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} | |
\`\`\`` | |
}) |