mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
22 lines
337 B
YAML
22 lines
337 B
YAML
language: node_js
|
|
node_js:
|
|
- "14"
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- .next
|
|
branches:
|
|
only:
|
|
- main
|
|
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 |