Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Migrate from TSLint to ESLint (#148) #9

Migrate from TSLint to ESLint (#148)

Migrate from TSLint to ESLint (#148) #9

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Coverage
run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v2