mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
40 lines
861 B
YAML
40 lines
861 B
YAML
name: test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
|
|
jobs:
|
|
jest-coverage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18.x
|
|
cache: 'npm'
|
|
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
|
|
- name: Run Tests
|
|
run: npm run test:ci
|
|
env:
|
|
CI: true
|
|
|
|
- name: Test Report
|
|
uses: dorny/test-reporter@v1
|
|
if: success() || failure() # run this step even if previous step failed
|
|
with:
|
|
name: Jest Tests # Name of the check run which will be created
|
|
path: junit*.xml # Path to test results
|
|
reporter: jest-junit # Format of test results
|