Skip to content

Commit

Permalink
Merge pull request #133 from Sebastian-Webster/132-split-ci-workflow-…
Browse files Browse the repository at this point in the history
…into-many-workflows

Split CI workflow into many workflows
  • Loading branch information
Sebastian-Webster authored Oct 24, 2024
2 parents 4b8d509 + 74fcfb1 commit aac93ff
Show file tree
Hide file tree
Showing 6 changed files with 243 additions and 416 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/bun-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Bun Compatibility

on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
bun:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
bun-version: [1.0.0, 1.x]

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.node-version }}

- name: Install packages
run: npm ci

- name: Run tests
run: npm run test:ci

- name: Upload mysqlmsn directory
if: ${{ failure() }}
uses: actions/[email protected]
with:
name: bun-${{ matrix.bun-version }}
path: /tmp/mysqlmsn
compression-level: 9
Loading

0 comments on commit aac93ff

Please sign in to comment.