Skip to content

chore: full refactor towards class-based await/async + TS + ESM #66

chore: full refactor towards class-based await/async + TS + ESM

chore: full refactor towards class-based await/async + TS + ESM #66

Workflow file for this run

name: Js
on:
workflow_dispatch:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install npm dependencies
run: npm i --include=dev
- name: Static Tests (TS ESM)
run: npm run ts-test-static
- name: Live Tests (TS ESM)
run: npm run ts-test-live
- name: Static Tests (JS CJS)
run: npm run static-test (JS CJS)
- name: Live Tests
run: npm run test
- name: CJS test
run: npm run test-cjs