Skip to content

Instantly share code, notes, and snippets.

View davcd's full-sized avatar
🧐
Continuous learning

David Carvajal davcd

🧐
Continuous learning
View GitHub Profile
@davcd
davcd / npm-publish.yml
Last active January 28, 2021 21:33
Github action for consistent npm publishing
name: Publish NPM package
on:
push:
branches:
- master
jobs:
version-check:
runs-on: ubuntu-latest
outputs:
changed: ${{ steps.version-check.outputs.changed }}
@davcd
davcd / launch.json
Created May 12, 2019 18:22
VS Code debug configuration for Serverless
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Serverless Offline",
"program": "${workspaceRoot}/node_modules/serverless/bin/serverless",
"args": ["offline", "--noTimeout", "--dontPrintOutput", "--stage=dev"],
"sourceMaps": true,