Skip to content

Added SRS Documentation #5

Added SRS Documentation

Added SRS Documentation #5

Workflow file for this run

# CI workflow for wavespace-senior-project
# Run on every push / pull-request to main branch
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Lint code
run: npm run lint
- name: Upload coverage to Codecov
if: success() && runner.os == 'Linux'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/**/*.json
flags: unittests