Skip to content

Include bundle

Include bundle #89

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
pull-requests: write
contents: read
jobs:
test:
runs-on: ubuntu-latest
name: Unit tests
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable --immutable-cache
- name: Build TypeScript
run: yarn build
- name: Run tests
run: yarn test
env:
ALLURE_SERVICE_URL: ${{ secrets.ALLURE_SERVICE_URL }}
ALLURE_SERVICE_ACCESS_TOKEN: ${{ secrets.ALLURE_SERVICE_ACCESS_TOKEN }}
ALLURE_SERVICE_PROJECT: ${{ secrets.ALLURE_SERVICE_PROJECT }}
- name: Run Allure Action
uses: ./
with:
working-directory: "./"
github-token: ${{ secrets.GITHUB_TOKEN }}