Skip to content

ci: using cache at bun #3

ci: using cache at bun

ci: using cache at bun #3

Workflow file for this run

name: Unit test
on:
pull_request:
types: [opened, synchronize, ready_for_review]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- uses: actions/cache@v3
with:
path: ~/.bun
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- run: bun install
- run: bun test