Skip to content

Fix: typing +882 erroneously shows BD flag. Closes #2092 #91

Fix: typing +882 erroneously shows BD flag. Closes #2092

Fix: typing +882 erroneously shows BD flag. Closes #2092 #91

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ "**" ]
permissions:
contents: read
jobs:
build-and-test:
name: Build and Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build (skip image sprite task)
run: npm run build:ci
- name: Run tests
run: npm test -- --runInBand