Skip to content

Revert https://github.com/graphql/dataloader/pull/222 #119

Revert https://github.com/graphql/dataloader/pull/222

Revert https://github.com/graphql/dataloader/pull/222 #119

Workflow file for this run

name: Typescript check, Lint and Tests
on: [push, pull_request]
jobs:
validation:
name: Testing on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies using NPM
run: npm install
- name: Tests
run: npm run test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true