Parallelize build script some more
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Lint Add .vercel to gitignore
This commit is contained in:
parent
57afaba0f7
commit
645bf7367b
4 changed files with 61 additions and 40 deletions
26
.drone.yml
26
.drone.yml
|
@ -22,10 +22,24 @@ steps:
|
||||||
- yarn build:pwa
|
- yarn build:pwa
|
||||||
depends_on:
|
depends_on:
|
||||||
- install
|
- install
|
||||||
- name: test
|
- name: prettier
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- yarn test
|
- yarn lint:prettier:all
|
||||||
|
depends_on:
|
||||||
|
- build-game
|
||||||
|
- build-pwa
|
||||||
|
- name: eslint
|
||||||
|
image: node
|
||||||
|
commands:
|
||||||
|
- yarn lint:eslint --max-warnings=0
|
||||||
|
depends_on:
|
||||||
|
- build-game
|
||||||
|
- build-pwa
|
||||||
|
- name: check
|
||||||
|
image: node
|
||||||
|
commands:
|
||||||
|
- yarn check
|
||||||
depends_on:
|
depends_on:
|
||||||
- build-game
|
- build-game
|
||||||
- build-pwa
|
- build-pwa
|
||||||
|
@ -36,6 +50,10 @@ steps:
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- main
|
- main
|
||||||
|
depends_on:
|
||||||
|
- prettier
|
||||||
|
- eslint
|
||||||
|
- check
|
||||||
- name: deploy (preview)
|
- name: deploy (preview)
|
||||||
image: dockette/vercel
|
image: dockette/vercel
|
||||||
commands:
|
commands:
|
||||||
|
@ -43,3 +61,7 @@ steps:
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- "!main"
|
- "!main"
|
||||||
|
depends_on:
|
||||||
|
- prettier
|
||||||
|
- eslint
|
||||||
|
- check
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
/node_modules/
|
/node_modules/
|
||||||
/public/build/
|
/public/build/
|
||||||
/public/service-worker.js
|
/public/service-worker.js
|
||||||
|
.vercel
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
<svelte:options immutable />
|
<svelte:options immutable />
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { fade } from "svelte/transition";
|
|
||||||
|
|
||||||
import type { Resource } from "../../shark/data/Resources";
|
import type { Resource } from "../../shark/data/Resources";
|
||||||
|
|
||||||
export let categoryName: string;
|
export let categoryName: string;
|
||||||
|
|
Reference in a new issue