Skip to content

Commit

Permalink
Fixed workflows
Browse files Browse the repository at this point in the history
- Fixed workflow problem
  • Loading branch information
infnibor committed Jul 22, 2024
1 parent 69bec6d commit 5548a1f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 50 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/biome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: BiomeLint

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '36 1 * * 6'

jobs:
biome:
name: Run biome linting
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Biome
run: npm install -g @biomejs/biome

- name: Run Biome Lint
run: biome lint --write src/
50 changes: 0 additions & 50 deletions .github/workflows/eslint.yml

This file was deleted.

0 comments on commit 5548a1f

Please sign in to comment.