Skip to content

fix: bump vitest from 2.1.9 to 3.0.7 #253

fix: bump vitest from 2.1.9 to 3.0.7

fix: bump vitest from 2.1.9 to 3.0.7 #253

Workflow file for this run

name: CI
on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging
env:
BUN_VERSION: latest
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{env.BUN_VERSION}}
- name: Install dependencies
run: bun install
- name: Run tests
run: bun run test
lint:
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{env.BUN_VERSION}}
- name: Install dependencies
run: bun install
- name: Lint
run: bun lint