Skip to content

Support NodeJS>=8

Support NodeJS>=8 #67

Workflow file for this run

name: Lambda-local unit tests
on:
push:
branches: [master, develop]
pull_request:
# The branches below must be a subset of the branches above
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, 14, 15, 16, 18]
steps:
- uses: actions/checkout@v3
- name: Get Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: make
- run: npm test