Skip to content

New Features about Number.prototype.toLocaleString() for IE11 in win7 and 8, a lot of related new definitions (Final PR) #487

New Features about Number.prototype.toLocaleString() for IE11 in win7 and 8, a lot of related new definitions (Final PR)

New Features about Number.prototype.toLocaleString() for IE11 in win7 and 8, a lot of related new definitions (Final PR) #487

Workflow file for this run

name: ~feature-hub Node.js CI
on:
push:
branches: ['**']
tags-ignore: ['**']
pull_request:
branches: ['**']
defaults:
run:
working-directory: packages/~feature-hub
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
- run: |
npm install --prefix ../..
npm run lint
test:
name: test (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20', '22', '24', latest]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test