Skip to content

Commit

Permalink
Merge pull request #2 from marvin-wtt/quasar-app-vite-2
Browse files Browse the repository at this point in the history
Quasar app vite 2
  • Loading branch information
marvin-wtt authored Mar 19, 2024
2 parents adb4b16 + 6f555b0 commit 2086f84
Show file tree
Hide file tree
Showing 21 changed files with 8,507 additions and 5,214 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
/src-cordova
/.quasar
/node_modules
.eslintrc.js
.eslintrc.cjs
/src-ssr
/quasar.config.*.temporary.compiled*
26 changes: 26 additions & 0 deletions .github/workflows/main_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Main Branch Push

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
32 changes: 32 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Pull Request

on:
pull_request:
branches:
- main

jobs:
build:
name: Build
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Run Prettier
run: npm run format:check

- name: Run Lint
run: npm run lint

- name: Build
run: npm run build
Loading

0 comments on commit 2086f84

Please sign in to comment.