Skip to content

Bump ts-jest from 29.1.0 to 29.1.1 #38

Bump ts-jest from 29.1.0 to 29.1.1

Bump ts-jest from 29.1.0 to 29.1.1 #38

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- "**"
push:
branches:
- master
- linting
workflow_dispatch:
jobs:
nodejs-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint