From 716ac8bae263dc7fcccc019f13084c756875f6c7 Mon Sep 17 00:00:00 2001 From: lucaslinyker Date: Thu, 20 Mar 2025 08:35:46 -0300 Subject: [PATCH] ci(actions): Adicionar action para fazer lint para rodar o biomejs em todos os pushes e pull requests --- .github/workflows/check-biomejs.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/check-biomejs.yml diff --git a/.github/workflows/check-biomejs.yml b/.github/workflows/check-biomejs.yml new file mode 100644 index 0000000..0a07653 --- /dev/null +++ b/.github/workflows/check-biomejs.yml @@ -0,0 +1,19 @@ +name: Check Lint and Format + +on: + push: + branches: + - '**' + pull_request: + branches: + - '**' + +jobs: + check: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Run Biome + run: npx biome ci