Simplify props (#11) #36
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: "Run linting and tests" | |
on: push | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Build Code | |
run: npm ci && npm run compile | |
- name: Lint Construct | |
run: npm run lint-check | |
- name: Test Construct | |
run: npm run test | |
- name: Lint Lambda | |
run: cd lambda && npm run lint-check | |
- name: Test Lambda | |
run: cd lambda && npm run test |