Skip to content

Initial changes - adding workflow file and Terraform configurations #7

Initial changes - adding workflow file and Terraform configurations

Initial changes - adding workflow file and Terraform configurations #7

Workflow file for this run

# Setting up continuous integration is a good practice as it allows you to automatically test your code changes, catch bugs, and
# enforce coding style before merging into the main branch.
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- closed
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test