diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39737e7..c0ed756 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,20 +1,20 @@ -name: Build - -on: - push: - branches: [ master ] - workflow_dispatch: - -jobs: - build: - concurrency: ci-${{ github.ref }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install - run: npm install - - - name: Lint - run: npm run lint +name: Build + +on: + push: + branches: [master] + workflow_dispatch: + +jobs: + build: + concurrency: ci-${{ github.ref }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install + run: npm install + + - name: Lint + run: npm run lint diff --git a/svelte.config.js b/svelte.config.js index 7cfcf0f..9f3fdde 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -20,10 +20,10 @@ const config = { // for more information about preprocessors preprocess: vitePreprocess(), kit: { - // Use different adapters based on the environment. - // For GitHub Pages deployment, use svelte-adapter-ghpages. + // Use different adapters based on the environment. + // 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. - adapter: adapter() + adapter: adapter(), // adapter: process.env.NODE_ENV === 'production' ? adapterGhpages({ // pages: 'build', // assets: 'build',