Skip to content

updated prod dockerfile #220

updated prod dockerfile

updated prod dockerfile #220

Workflow file for this run

name: EsLint
on: [push]
jobs:
EsLint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
cache: "npm"
- name: Setup Node
run: npm install
- name: Run ESLint
run: npm run lint