Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrated to Nuxt #129

Merged
merged 1 commit into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 0 additions & 20 deletions .editorconfig

This file was deleted.

287 changes: 0 additions & 287 deletions .eslintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions .gitattributes

This file was deleted.

12 changes: 7 additions & 5 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,16 @@ jobs:
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Build
run: npm run build:prod
- name: Test
run: npm run test
- name: Build Application
run: npm run generate
- name: Generate PWA Assets
run: npm run generate-pwa-assets
# - name: Run Unit Tests
# run: npm run test
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist
path: .output/public

deploy:
environment:
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Build
run: npm run build:dev
- name: Test
run: npm run test
- name: Build Application
run: npm run generate
- name: Generate PWA Assets
run: npm run generate-pwa-assets
# - name: Run Unit Tests
# run: npm run test
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@ logs
.env
.env.*
!.env.example

# Generated PWA assets
public/apple-touch-icon-*.png
public/favicon.ico
public/maskable-icon-*.png
public/pwa-*.png
Loading
Loading