2024-04-07 13:20:08 -04:00
|
|
|
name: Code Format Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-04-08 13:22:13 -04:00
|
|
|
branches: [main]
|
2024-04-07 13:20:08 -04:00
|
|
|
pull_request:
|
2024-04-08 13:22:13 -04:00
|
|
|
branches: [main]
|
2024-04-07 13:20:08 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-04-08 13:22:13 -04:00
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v4
|
2024-04-07 13:20:08 -04:00
|
|
|
|
2024-04-08 13:22:13 -04:00
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-12-28 17:36:50 -05:00
|
|
|
node-version: 'latest'
|
2024-04-07 13:20:08 -04:00
|
|
|
|
2024-06-04 20:41:40 -04:00
|
|
|
- name: Configure Corepack
|
|
|
|
run: corepack enable
|
|
|
|
|
2024-04-08 13:22:13 -04:00
|
|
|
- name: Install dependencies
|
2025-01-10 18:26:17 -05:00
|
|
|
run: yarn install --immutable
|
2024-04-07 13:20:08 -04:00
|
|
|
|
2024-04-08 13:22:13 -04:00
|
|
|
- name: Check code format
|
2025-01-10 18:26:17 -05:00
|
|
|
run: yarn format
|