Skip to content

Commit

Permalink
Merge pull request #16 from NMSCD/dev
Browse files Browse the repository at this point in the history
Bump Bulma
  • Loading branch information
Lenni009 authored Jul 16, 2024
2 parents 9ff2ed2 + 74aede2 commit 36521df
Show file tree
Hide file tree
Showing 13 changed files with 991 additions and 887 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
target-branch: 'dev'
schedule:
interval: 'weekly'

- package-ecosystem: 'github-actions'
directory: '/'
target-branch: 'dev'
schedule:
interval: 'weekly'
25 changes: 25 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test Build
run-name: Test Build

on:
pull_request:
types: [opened, synchronize]

concurrency:
group: 'testbuild'
cancel-in-progress: true

jobs:
Build:
runs-on: ubuntu-latest

permissions:
pull-requests: write
contents: write

steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Test Build
uses: Lenni009/test-build-vite-action@main
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
14 changes: 14 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"singleQuote": true,
"semi": true,
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 120,
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"useTabs": false,
"vueIndentScriptAndStyle": false,
"singleAttributePerLine": true
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<body>
<div class="container">
<header>
<nav>
<nav class="my-4">
<a href=".." title="Other pages">&larr; View other pages</a>
</nav>
<h1 class="title is-3">Base Relocator</h1>
<h1 class="has-text-centered title is-3">Base Relocator</h1>
</header>
<main>
<section id="input">
Expand Down Expand Up @@ -53,4 +53,4 @@ <h2 class="title is-5">Log</h3>
</div>
</body>

</html>
</html>
Loading

0 comments on commit 36521df

Please sign in to comment.