Skip to content

build(deps-dev): bump typescript from 5.1.6 to 5.3.3 #145

build(deps-dev): bump typescript from 5.1.6 to 5.3.3

build(deps-dev): bump typescript from 5.1.6 to 5.3.3 #145

Workflow file for this run

name: Node.js CI
on:
push:
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
pull_request:
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, macOS-latest] # , windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install # npm ci
- run: npm run build --if-present
- run: npm run test:ci