Fix Node pipeline #24
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: Bun CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
bun-version: ["v1.x"] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Use Bun Version ${{ matrix.bun-version }} | |
uses: antongolub/[email protected] | |
with: | |
bun-version: ${{ matrix.bun-version }} | |
bun-repo: 'oven-sh/bun' | |
- name: Install Dependencies | |
run: bun x jsr add @cross/runtime @std/assert | |
- name: Test Bun Module | |
run: bun test |