Skip to content

feat: add concurrent scope isolation #50

feat: add concurrent scope isolation

feat: add concurrent scope isolation #50

name: '🔬 CI — Bun'
on:
push:
branches:
- main
paths:
- '.github/workflows/ci_compatibility-bun.yml'
- 'src/**'
- 'tests/**'
- 'package-lock.json'
- 'package.json'
pull_request:
paths:
- '.github/workflows/ci_compatibility-bun.yml'
- 'src/**'
- 'tests/**'
- 'package-lock.json'
- 'package.json'
workflow_dispatch:
jobs:
bun:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
bun-version: ['latest']
name: Bun ${{ matrix.bun-version }}
steps:
- name: ➕ Actions - Checkout
uses: actions/checkout@v4
- name: ➕ Actions - Setup Node.js
uses: actions/setup-node@v4
with:
check-latest: true
node-version: lts/*
- name: ➕ Actions - Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- name: ➕ Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: 📦 Installing Dependencies
run: npm ci
- name: 🔬 Bun ${{ matrix.bun-version }}
run: npm run test:bun