Skip to content

Fix lambda exit

Fix lambda exit #12

Workflow file for this run

name: Build Pull Request
on:
pull_request
jobs:
build-pr:
runs-on: ubuntu-latest
name: Build Pull Request
services:
memcached:
image: memcached:latest
ports:
- 11211:11211/tcp
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
token: ${{ secrets.git_token || github.token }}
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Build Package
run: |
npm clean-install
npm run build