Skip to content

Commit

Permalink
Run Biome in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
qsantos committed Jul 5, 2024
1 parent 7a145f3 commit 2ec07fb
Show file tree
Hide file tree
Showing 4 changed files with 5,422 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on:
push:
branches: master
pull_request:
branches: master

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
release/
manifest.json
node_modules/
Loading

0 comments on commit 2ec07fb

Please sign in to comment.