Skip to content

build(deps-dev): bump @types/jest from 29.5.6 to 29.5.10 #26

build(deps-dev): bump @types/jest from 29.5.6 to 29.5.10

build(deps-dev): bump @types/jest from 29.5.6 to 29.5.10 #26

Workflow file for this run

name: Generic Node.js CI - Tests and Lint Checks
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
linter:
name: CI Linter
runs-on: ubuntu-latest
steps:
- name: Checking Out Commits Securely . . .
uses: actions/checkout@v2
- name: Setup Node 16 Environment . . .
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies . . .
working-directory: .
run: npm ci
- name: Run The Linter . . .
run: npm run test:lint
tests:
name: CI Tests
runs-on: ubuntu-latest
steps:
- name: Checking Out Commits Securely . . .
uses: actions/checkout@v2
- name: Setup Node 16 Environment . . .
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies . . .
working-directory: .
run: npm ci
- name: Run The Tests . . .
run: npm run test