use external service for charts rendering #17
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test Allure Report Publisher Action | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --immutable --immutable-cache --check-cache | |
| - name: Build TypeScript | |
| run: yarn build | |
| - name: Run Allure Action | |
| uses: ./ | |
| with: | |
| working-directory: "." | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Check Action Output | |
| run: | | |
| echo "${{ steps.allure-report.outputs.markdown }}" |