Skip to content

reduce index by inlining Hangul Jamo Extended-B range (#109) #453

reduce index by inlining Hangul Jamo Extended-B range (#109)

reduce index by inlining Hangul Jamo Extended-B range (#109) #453

Workflow file for this run

name: Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Checking build
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Build
run: yarn build
test:
name: Running tests
runs-on: ubuntu-24.04-arm
permissions:
id-token: write
steps:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Execute Tests
run: |
node \
--test --test-reporter spec --test-reporter-destination=stdout \
--experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
use_oidc: true