Skip to content

[CHORE] moved installation and cicd to bun #15

[CHORE] moved installation and cicd to bun

[CHORE] moved installation and cicd to bun #15

Workflow file for this run

name: Code quality
on:
pull_request:
branches:
- dev
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Verify code quality
run: bun run verify