Skip to content

Merge branch 'feat-home-circle-animation' of https://github.com/flixl… #103

Merge branch 'feat-home-circle-animation' of https://github.com/flixl…

Merge branch 'feat-home-circle-animation' of https://github.com/flixl… #103

Workflow file for this run

name: Format Check
on:
push:
branches:
- "*"
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache pnpm modules
id: cache-modules
uses: actions/cache@v4
with:
path: |
~/.pnpm-store
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'rollup.config.js') }}
restore-keys: |
${{ runner.os }}-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
run_install: false
- name: Install Packages
if: steps.cache-modules.outputs.cache-hit != 'true'
run: pnpm install --no-frozen-lockfile
- name: Format Check
run: pnpm format:check