Skip to content

Extract code to separate files #96

Extract code to separate files

Extract code to separate files #96

Workflow file for this run

name: test.yml
on:
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
jobs:
units:
name: Units
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: '22.19'
cache: npm
cache-dependency-path: package-lock.json
- name: Install Dependencies
id: npm-i
run: npm i
- name: run tests
id: npm-test
run: CI=1 npm test