Skip to content

⏪ revert PR 32 and 34 #34

⏪ revert PR 32 and 34

⏪ revert PR 32 and 34 #34

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Run tests
run: npm run test:ci
- name: Test Report
uses: dorny/test-reporter@v2
if: ${{ !cancelled() }}
with:
name: Node tests
path: report.xml
reporter: jest-junit