Skip to content

Update README.md

Update README.md #25

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- run: npm install --save-dev
- name: Run tsc
run: |
npm install -g typescript
tsc
- name: Run bundler (tsup)
run: |
npm install -g tsup
tsup
- name: Run bundler (webpack)
run: |
npx webpack
- name: Run tests
run: |
npm install -g jest
npm install -g ts-jest
jest