feat: add a new bun?: boolean
option
#1120
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: CI | |
on: | |
- push | |
- pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
default: | |
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
- 22 | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
env: | |
YARN_IGNORE_NODE: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn --immutable | |
- name: Build and Typecov | |
run: yarn run-s build typecov | |
env: | |
EFF_NO_LINK_RULES: true | |
PARSER_NO_WATCH: true | |
- name: Lint and Test | |
if: ${{ matrix.node != 16}} | |
run: yarn run-s lint test |