Skip to content

Remove GN reference and add boostrap action (#11) #45

Remove GN reference and add boostrap action (#11)

Remove GN reference and add boostrap action (#11) #45

Workflow file for this run

name: Run unit tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: Run unit tests and validate coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version-file: .node-version
- name: Install dependencies
run: npm install
- name: Run tests with coverage
run: npm test
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Validate coverage is still 100%
run: ./scripts/check_coverage.py