Skip to content

Samaritan update from May 2026 #50

Samaritan update from May 2026

Samaritan update from May 2026 #50

Workflow file for this run

name: API workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test reactjs app
steps:
- uses: actions/checkout@v1
- name: Install requirements
run: npm i
- name: Run tests and collect coverage
run: npm test -- --coverage
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}