Skip to content

feat: ElasticLoadBalancingV2 TargetGroups, provisioned concurrency support #14

feat: ElasticLoadBalancingV2 TargetGroups, provisioned concurrency support

feat: ElasticLoadBalancingV2 TargetGroups, provisioned concurrency support #14

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint_and_test:
runs-on: ubuntu-latest
name: Linting & Tests
steps:
- name: Cloning repo
uses: actions/checkout@v2
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v2
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
if: steps.setup-node.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- name: Run tests
run: npm run test