Skip to content

chore(deps): bump serve-static from 1.15.0 to 1.16.2 #35

chore(deps): bump serve-static from 1.15.0 to 1.16.2

chore(deps): bump serve-static from 1.15.0 to 1.16.2 #35

Workflow file for this run

name: Check Typescript code
on:
push:
paths:
- '**.ts'
- '**/package.json'
- '**/package-lock.json'
- '.github/workflows/check-ts.yml'
jobs:
build-and-fmt:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Dependencies
run: npm ci
- name: Format/Lint
run: npm run fmt && git diff --exit-code