Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
x committed Dec 29, 2021
1 parent 7701f14 commit 60cc827
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
extends: [
"plugin:vue/vue3-essential",
"prettier",
],
rules: {
// override/add rules settings here, such as:
"vue/no-unused-vars": "error",
},
}
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Deploy to GitHub Pages
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
cache: "npm"
- name: Install packages
run: npm install
- name: Build the application
run: npm run build
- name: Commit changed files
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated - commit latest build
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
.DS_Store
*.local
.vscode
Empty file added .nojekyll
Empty file.
11 changes: 11 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
semi: false,
tabWidth: 4,
useTabs: false,
printWidth: 80,
endOfLine: "auto",
singleQuote: true,
trailingComma: "es5",
bracketSpacing: true,
arrowParens: "always",
}

0 comments on commit 60cc827

Please sign in to comment.