Skip to content

feat: correct the read me file #18

feat: correct the read me file

feat: correct the read me file #18

Workflow file for this run

name: Run Jest and Publish Test Report
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: npm ci
- name: Run Jest Tests
run: npm run test
- name: Upload Test Report
uses: actions/upload-artifact@v4
with:
name: jest-stare-report
path: jest-stare/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: jest-stare
force_orphan: true