Skip to content

Bump @types/node from 25.3.0 to 25.3.1 #725

Bump @types/node from 25.3.0 to 25.3.1

Bump @types/node from 25.3.0 to 25.3.1 #725

Workflow file for this run

name: Tests
"on":
pull_request: {}
push:
branches:
- main
jobs:
unit:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "18.x"
cache: 'npm'
- name: Run Install
run: npm ci
- name: Run Build
run: npm run build --if-present
- name: Run Tests
run: npm test
- name: Report coverage
run: bash <(curl -s https://codecov.io/bash)