chore(deps): update all non-major dependencies #256
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: Tests with Allure Report | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| pull-requests: write | |
| checks: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Apollo Git Bot | |
| id: bot-token | |
| uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 | |
| with: | |
| app-id: ${{ secrets.STUDIOCMS_GIT_BOT_APP_ID }} | |
| private-key: ${{ secrets.STUDIOCMS_GIT_BOT_PRIVATE_KEY }} | |
| - name: Checkout Repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| token: ${{ steps.bot-token.outputs.token }} | |
| - name: Install Tools & Dependencies | |
| uses: withstudiocms/automations/.github/actions/install@274ff117aae1034c6b4d37f545268c96a7604077 # main | |
| - name: Build packages | |
| run: pnpm ci:build | |
| - name: Run tests and generate report | |
| run: pnpm ci:test | |
| - name: Run Allure Action | |
| uses: allure-framework/allure-action@c24234151c027cfee99e00eb6ec2dac1eb350414 # v0.6.6 | |
| with: | |
| report-directory: "./allure-report" | |
| github-token: ${{ steps.bot-token.outputs.token }} |