Skip to content

Remove TypeScript, add tests, add CI, improve the library #1

Remove TypeScript, add tests, add CI, improve the library

Remove TypeScript, add tests, add CI, improve the library #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm ci
- run: npm run lint
- run: npm test