Skip to content

Merge pull request #91 from f14XuanLv/fix/utf8-multibyte-truncation-a… #88

Merge pull request #91 from f14XuanLv/fix/utf8-multibyte-truncation-a…

Merge pull request #91 from f14XuanLv/fix/utf8-multibyte-truncation-a… #88

Workflow file for this run

name: Node CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['16', '18']
steps:
- uses: actions/checkout@v5
- name: Set up Node ${{ matrix.ruby-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build Typescript
run: npm run build
- name: Run tests
run: npm test