Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement the streaming equivalent of MUtf8Encoder and MUtf8Decoder. #35

Merged
merged 2 commits into from
Feb 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testdata.mts linguist-generated=true
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: build
on:
pull_request:
push:
branches: master
jobs:
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/check.yaml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/publish-mutf-8-stream.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: publish mutf-8-stream
on: workflow_dispatch
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci --ignore-scripts=true
- name: Run build mutf-8
run: npm run build:ci --workspace=packages/mutf-8
- name: Publish package
run: npm publish --workspace=packages/mutf-8-stream
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading
Loading