Skip to content

Commit

Permalink
Merge branch 'main' into newdata
Browse files Browse the repository at this point in the history
  • Loading branch information
bortoz committed Dec 26, 2024
2 parents 7639540 + 7519457 commit 0e0484f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on:
pull_request:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Code quality

on:
push:
pull_request:

jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest

- name: Run Biome
run: biome ci .
7 changes: 5 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@
}
},
"css": {
"parser": {
"cssModules": true
"formatter": {
"enabled": false
},
"linter": {
"enabled": false
}
}
}

0 comments on commit 0e0484f

Please sign in to comment.