Skip to content

Commit

Permalink
Merge pull request #13 from unovil/dashboard-design
Browse files Browse the repository at this point in the history
Dashboard design
  • Loading branch information
unovil authored May 15, 2024
2 parents 18ed100 + 1fb6a7f commit 8ca13c1
Show file tree
Hide file tree
Showing 90 changed files with 13,093 additions and 9,853 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ name: Node.js CI

on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand All @@ -20,14 +19,14 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build --if-present
- run: npm test
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build --if-present
- run: npm test
25 changes: 25 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte",
"embeddedLanguageFormatting": "auto"
}
},
{
"files": "*.ts",
"options": {
"parser": "typescript",
"semi": false,
"quoteProps": "consistent",
"singleQuote": false,
"bracketSpacing": true,
"arrowParens": "always",
"trailingComma": "none",
"endOfLine": "auto"
}
}
]
}
Loading

0 comments on commit 8ca13c1

Please sign in to comment.