Skip to content

remove featureFlags cldr check #97

remove featureFlags cldr check

remove featureFlags cldr check #97

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Build
run: |
yarn
yarn clean
- name: Test
run: yarn test
# - uses: codecov/codecov-action@v1
# if: matrix.node-version == '16.x'
# with:
# file: ./coverage/lcov.info
# name: codecov-umbrella
# fail_ci_if_error: true