mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-20 05:12:54 +08:00
19 lines
307 B
YAML
19 lines
307 B
YAML
|
language: node_js
|
||
|
node_js:
|
||
|
- "14"
|
||
|
cache:
|
||
|
directories:
|
||
|
- node_modules
|
||
|
- .next
|
||
|
script:
|
||
|
- npm run test
|
||
|
- npm run build
|
||
|
deploy:
|
||
|
provider: pages
|
||
|
skip_cleanup: true
|
||
|
local_dir: out
|
||
|
github_token: $GITHUB_TOKEN
|
||
|
target_branch: gh-pages
|
||
|
keep_history: true
|
||
|
on:
|
||
|
branch: main
|