-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: 12ball <[email protected]> Reviewed-on: https://codeberg.org/janie314/janie.page/pulls/12
- Loading branch information
Jane Davis
and
12ball
committed
Dec 22, 2024
1 parent
09e1a6a
commit 12c42a5
Showing
125 changed files
with
497 additions
and
2,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"major": { "automerge": true }, | ||
"minor": { "automerge": true }, | ||
"patch": { "automerge": true }, | ||
"pin": { "automerge": true }, | ||
"pinDigest": { "automerge": true }, | ||
"digest": { "automerge": true }, | ||
"lockFileMaintenance": { "automerge": true }, | ||
"rollback": { "automerge": true }, | ||
"replacement": { "automerge": true } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- release | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: testing and linting this branch | ||
steps: | ||
- name: check out this repo | ||
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: setup ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: setup bun | ||
uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: latest | ||
- name: lint frontend code | ||
run: | | ||
bun i | ||
bun run biome ci --verbose | ||
- name: lint ruby code | ||
run: | | ||
bundle exec rubocop | ||
- name: run frontend build was run | ||
run: | | ||
bundle exec rake build | ||
- name: check for TODOs | ||
run: | | ||
git ls-files frontend backend | xargs grep -Ii todo | wc -l | xargs ruby -e 'exit ARGV[0].to_i == 0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dist | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "peppermint", "~> 0.1.13", group: :development | ||
gem "peppermint", "~> 0.1.17", group: :development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.