Skip to content

docs: add ThorntonMatthewD as a contributor for code, and test #22

docs: add ThorntonMatthewD as a contributor for code, and test

docs: add ThorntonMatthewD as a contributor for code, and test #22

Workflow file for this run

name: ci
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install npm
uses: actions/setup-node@v3
with:
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run lint-check
- name: Check for type errors
run: npm run type-check
- name: Check for build errors
run: npm run build
- name: Run unit tests
run: npm run test:unit
- name: Run end-to-end tests
run: npm run test:e2e