Skip to content

feat: port from TypeScript to JS #1

feat: port from TypeScript to JS

feat: port from TypeScript to JS #1

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Lint & Tests
run: |
npm install
npm run lint
npm test:ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}