Skip to content

Update dependency typescript to ^5.5.4 #559

Update dependency typescript to ^5.5.4

Update dependency typescript to ^5.5.4 #559

Workflow file for this run

name: CI
on:
push:
tags: [v*]
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "./.nvmrc"
- name: Install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: Check code format with Prettier
run: npm run format:check