Skip to content

Instantly share code, notes, and snippets.

View warren30815's full-sized avatar

Jordan Hsu warren30815

View GitHub Profile
@warren30815
warren30815 / .gitlab-ci.yml
Created July 7, 2023 07:50
Gitlab CI with uploading bundled file to aws s3
stages:
- build
build:
stage: build
image: node:lts
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
script:
@warren30815
warren30815 / settings.json
Last active February 24, 2025 08:38
vscode setting
{
// common
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Roboto Mono for Powerline",
"editor.accessibilitySupport": "off",
"editor.minimap.enabled": false,
"editor.smoothScrolling": false,
"editor.cursorSmoothCaretAnimation": "off",
"files.autoSave": "onFocusChange",
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "bottom",