Skip to content

Next Sportradar CR.

Next Sportradar CR. #7

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Run Unit Tests and Data Validation
on: [push, pull_request]
jobs:
run_unit_and_data_validation_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: 'npm'
- run: npm ci
- run: npm test