fix(background): make animation smoother #60
Workflow file for this run
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: Build & Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout respository | |
uses: actions/checkout@v4 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Cache node modules | |
id: bun-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules/ | |
key: ${{ runner.os }}-node-${{ hashFiles('bun.lockb') }} | |
restore-keys: | | |
${{ runner.os }}-node | |
- name: Install bun dependencies | |
run: bun install --frozen-lockfile | |
- name: Check format | |
run: bun run fmt.check | |
- name: Check lint | |
run: bun run lint |