Skip to content

chore(deps-dev): bump @types/node from 25.6.0 to 25.9.1 #296

chore(deps-dev): bump @types/node from 25.6.0 to 25.9.1

chore(deps-dev): bump @types/node from 25.6.0 to 25.9.1 #296

Workflow file for this run

name: 'Run Tests'
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- name: 'Checkout Git repository with history for all branches and tags'
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: 'Use Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: 'Install, lint, and test'
run: |
yarn install --frozen-lockfile
yarn lint
yarn test
if: |
contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
- name: 'Upload coverage reports to Codecov'
uses: codecov/codecov-action@v6.0.1
with:
fail_ci_if_error: false
files: ./coverage/lcov.info
flags: unittests
verbose: false
yml: ./codecov.yml