Skip to content

test additional image ecr - fix 2 #52

test additional image ecr - fix 2

test additional image ecr - fix 2 #52

name: Lint
# Trigger the workflow on push
on: [push]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run prettier