mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-09-12 19:51:00 +05:00
28 lines
510 B
YAML
28 lines
510 B
YAML
name: autofix.ci
|
|
|
|
on:
|
|
push:
|
|
branches: [canary]
|
|
pull_request:
|
|
branches: [canary]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v7
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup biomeJs
|
|
uses: biomejs/setup-biome@v2
|
|
|
|
- name: Run Biome formatter
|
|
run: biome format --write
|
|
|
|
- uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1.3.4
|