Skip to content

Improve Documentation, Prepare for Desktop Build #25

Improve Documentation, Prepare for Desktop Build

Improve Documentation, Prepare for Desktop Build #25

Workflow file for this run

name: npm test
on:
pull_request:
branches:
- '**'
push:
branches:
- master
- beta
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Install Node.js on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
env:
PUPPETEER_SKIP_DOWNLOAD: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: npm ci
- name: Generate coverage report
run: npm run report:coverage
- name: Send coverage report
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./reports/