Skip to content

Merge pull request #3641 from OpenNeuroOrg/annex-remote-log-format-bug #1740

Merge pull request #3641 from OpenNeuroOrg/annex-remote-log-format-bug

Merge pull request #3641 from OpenNeuroOrg/annex-remote-log-format-bug #1740

Workflow file for this run

name: TypeScript tests and coverage
on:
push: { branches: [master] }
pull_request: { branches: [master] }
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn install
- run: yarn test --coverage
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}