Skip to content

feat: add polyfill support for Intl NumberFormat.formatToParts #159

feat: add polyfill support for Intl NumberFormat.formatToParts

feat: add polyfill support for Intl NumberFormat.formatToParts #159

Workflow file for this run

name: Build & Validate
on:
pull_request:
jobs:
validate:
name: Validate Source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 20.3.1
- name: Install dependencies
run: yarn
- name: run eslint
run: yarn lint
- name: run tsc
run: yarn tsc
build:
name: Run Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 20.3.1
- name: Install dependencies
run: yarn
- name: run build
run: yarn build