Skip to content

Bump @types/node from 20.16.13 to 22.8.7 #191

Bump @types/node from 20.16.13 to 22.8.7

Bump @types/node from 20.16.13 to 22.8.7 #191

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Lint
run: npm run lint
- name: Run Prettier
run: npm run prettier
- name: Run Test
run: npm run test:coverage
- name: Build
run: npm run build