Skip to content

chore(deps-dev): bump ts-jest from 29.4.4 to 29.4.5 (#241) #218

chore(deps-dev): bump ts-jest from 29.4.4 to 29.4.5 (#241)

chore(deps-dev): bump ts-jest from 29.4.4 to 29.4.5 (#241) #218

Workflow file for this run

name: Testing
on:
push:
branches:
- main
paths:
- '*.mjs'
- '*.js'
- '*.ts'
- '.github/workflows/*.yml'
- 'package.json'
- 'tsconfig.json'
pull_request:
branches:
- main
paths:
- '*.mjs'
- '*.js'
- '*.ts'
- '.github/workflows/*.yml'
- 'package.json'
- 'tsconfig.json'
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint Code Base
run: npm install && npm run lint
build:
needs: lint
strategy:
matrix:
version: [18, 20, 22]
os: [ubuntu-latest, ubuntu-24.04, ubuntu-22.04]
name: Testing
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Testing with Node ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm install jest
- run: npm test