Skip to content

Fix session widget tests #198

Fix session widget tests

Fix session widget tests #198

Workflow file for this run

name: Gathering checks
on:
push:
branches: [main]
pull_request:
paths:
- "gathering/**"
- ".github/workflows/ci-gathering.yml"
permissions:
checks: write
pull-requests: write
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
package_json_file: gathering/package.json
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm
cache-dependency-path: gathering/pnpm-lock.yaml
- name: Install Dependencies
run: pnpm install
working-directory: gathering
- name: Lint
run: pnpm lint
working-directory: gathering
test:
name: "Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
package_json_file: gathering/package.json
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm
cache-dependency-path: gathering/pnpm-lock.yaml
- name: Install Dependencies
run: pnpm install
working-directory: gathering
- name: Run Tests
run: pnpm test
working-directory: gathering
- name: Publish test results
uses: EnricoMi/[email protected]
if: always()
with:
check_name: "Gathering test results"
junit_files: junit/host.xml