Skip to content

chore(deps-dev): bump @types/node from 20.12.7 to 20.14.10 in /api #1367

chore(deps-dev): bump @types/node from 20.12.7 to 20.14.10 in /api

chore(deps-dev): bump @types/node from 20.12.7 to 20.14.10 in /api #1367

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 18.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: test
run: |
cd api
npm ci
npm run test:cov
- name: npm run build
run: |
cd api
npm run build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./api/coverage/clover.xml
flags: unittests
name: lib
fail_ci_if_error: false