Skip to content

Show release version in the release workflow #156

Show release version in the release workflow

Show release version in the release workflow #156

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
pull-requests: write
checks: write
contents: read
jobs:
test:
runs-on: ubuntu-latest
name: Unit tests
env:
ALLURE_SERVICE_ACCESS_TOKEN: ${{ secrets.ALLURE_SERVICE_ACCESS_TOKEN }}
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 tests
run: yarn test
continue-on-error: true
- name: Run Allure Action
uses: ./
with:
report-directory: "./out/allure-report"
github-token: ${{ secrets.GITHUB_TOKEN }}