[Terminal] Fix a case where printMessageInBox would throw if the message contains a line longer than the boxwidth. #1817
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- NodeVersion: 16 | |
OS: ubuntu-latest | |
- NodeVersion: 18 | |
OS: ubuntu-latest | |
- NodeVersion: 20 | |
OS: ubuntu-latest | |
- NodeVersion: 18 | |
OS: windows-latest | |
name: Node.js v${{ matrix.NodeVersion }} (${{ matrix.OS }}) | |
runs-on: ${{ matrix.OS }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Git config user | |
run: | | |
git config --local user.name "Rushbot" | |
git config --local user.email "[email protected]" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.NodeVersion }} | |
- name: Verify Change Logs | |
run: node common/scripts/install-run-rush.js change --verify | |
- name: Rush Install | |
run: node common/scripts/install-run-rush.js install | |
# - if: runner.os == 'Linux' | |
# name: Start xvfb | |
# run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
- name: Rush retest (install-run-rush) | |
run: node common/scripts/install-run-rush.js retest --verbose --production | |
env: | |
# Prevent time-based browserslist update warning | |
# See https://github.com/microsoft/rushstack/issues/2981 | |
BROWSERSLIST_IGNORE_OLD_DATA: 1 | |
- name: Ensure repo README is up-to-date | |
run: node repo-scripts/repo-toolbox/lib/start.js readme --verify | |
- name: Rush test (rush-lib) | |
run: node apps/rush/lib/start-dev.js test --verbose --production --timeline | |
env: | |
# Prevent time-based browserslist update warning | |
# See https://github.com/microsoft/rushstack/issues/2981 | |
BROWSERSLIST_IGNORE_OLD_DATA: 1 |