feat: #220 AWS Lambda Handler #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AWS Lambda Handler | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
# TODO: Remove when no longer using file dependency | |
- run: npm ci | |
working-directory: ./ | |
- run: npm ci | |
working-directory: ./aws-lambda | |
- run: npm test | |
working-directory: ./aws-lambda | |
- run: npm run eslint | |
working-directory: ./aws-lambda |