Skip to content

chore: added name to the job #2

chore: added name to the job

chore: added name to the job #2

Workflow file for this run

name: Run Tests and Publish Report
on: [push, pull_request] # Runs this workflow on push and pull requests
jobs:
test-and-publish:
name: Test and Publish Report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: test-report
path: report/