Allow applications using ink to enter alternate buffer mode early #932
Workflow file for this run
This file contains hidden or 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: test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - upstream_master | |
| pull_request: | |
| branches: | |
| - master | |
| - upstream_master | |
| jobs: | |
| test: | |
| name: Node.js ${{ matrix.node_version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node_version: | |
| - 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node_version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| - run: npm install | |
| - run: npm test -- --serial | |
| env: | |
| FORCE_COLOR: true | |
| CI: false |