Skip to content

foo

foo #28

Workflow file for this run

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 }}"