Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gflohr committed Jan 8, 2025
1 parent 51a8f6c commit 61a7f91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-quick.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI - Test Suite

on:
push:
pull_request:
branches:
- '**'

Expand All @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-bun@v2
uses: oven/setup-bun@v2
with:
node-version: ${{ matrix.node-version }}

Expand Down
13 changes: 3 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16, 18, 20, 22]
node-version: [22]

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

- name: Set up Node.js
uses: actions/setup-node@v3
uses: oven/setup-bun@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install Bun
run: curl -fsSL https://bun.sh/install | bash

- name: Set Bun environment path
shell: bash
run: echo "export PATH=\$HOME/.bun/bin:\$PATH" >> $GITHUB_ENV

- name: Install dependencies
run: bun install

Expand Down

0 comments on commit 61a7f91

Please sign in to comment.