Reformat files
This commit is contained in:
parent
cfe884c4ea
commit
505abd364b
|
@ -1,20 +1,20 @@
|
||||||
name: Build
|
name: Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [master]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
concurrency: ci-${{ github.ref }}
|
concurrency: ci-${{ github.ref }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
|
|
@ -20,10 +20,10 @@ const config = {
|
||||||
// for more information about preprocessors
|
// for more information about preprocessors
|
||||||
preprocess: vitePreprocess(),
|
preprocess: vitePreprocess(),
|
||||||
kit: {
|
kit: {
|
||||||
// Use different adapters based on the environment.
|
// Use different adapters based on the environment.
|
||||||
// For GitHub Pages deployment, use svelte-adapter-ghpages.
|
// For GitHub Pages deployment, use svelte-adapter-ghpages.
|
||||||
// For local development, you can use a different adapter like @sveltejs/adapter-static or any other suitable one.
|
// For local development, you can use a different adapter like @sveltejs/adapter-static or any other suitable one.
|
||||||
adapter: adapter()
|
adapter: adapter(),
|
||||||
// adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({
|
// adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({
|
||||||
// pages: 'build',
|
// pages: 'build',
|
||||||
// assets: 'build',
|
// assets: 'build',
|
||||||
|
|
Loading…
Reference in New Issue