Skip to content

Bump ts-jest from 29.1.1 to 29.1.4 #294

Bump ts-jest from 29.1.1 to 29.1.4

Bump ts-jest from 29.1.1 to 29.1.4 #294

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: npm install, build, test and generate coverage
run: |
npm install
npm run build
npm run coverage
env:
CI: true
- name: Upload coverage
if: success()
run: bash <(curl -s https://codecov.io/bash) -t $TOKEN -B $REF
env:
TOKEN: "${{ secrets.CODECOV_TOKEN }}"
REF: "${{ github.ref }}"