Skip to content

Bump ts-jest from 29.0.3 to 29.1.2 #66

Bump ts-jest from 29.0.3 to 29.1.2

Bump ts-jest from 29.0.3 to 29.1.2 #66

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16, 18, 19]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test -- --coverage
build:
strategy:
matrix:
target: [lib, e2e, doc]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build:lib
- run: npm run build:e2e
- run: npm run build:doc
coverage:
needs: [test, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm test -- --coverage
- uses: codecov/codecov-action@v3
with:
file: ./coverage/coverage-final.json