Skip to content

bump to vers. 0.1.1 #14

bump to vers. 0.1.1

bump to vers. 0.1.1 #14

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
name: TypeScript Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Use Node.js 20.x
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- name: Install Dependencies
run: npm ci
- name: Type Checking with `tsc`
run: npm run lint