Skip to content

Docker setup with ECR and GitHub actions #1

Docker setup with ECR and GitHub actions

Docker setup with ECR and GitHub actions #1

Workflow file for this run

name: CI/CD
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
- name: NPM Install
run: npm i
- name: Run ESLint
run: npm run test
- name: Build
run: npm run build