Skip to content

Do not set tags (#8) #24

Do not set tags (#8)

Do not set tags (#8) #24

Workflow file for this run

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