diff --git a/.github/workflows/ci-jobs.yml b/.github/workflows/ci-jobs.yml index 2cd27c9..a266a7f 100644 --- a/.github/workflows/ci-jobs.yml +++ b/.github/workflows/ci-jobs.yml @@ -9,6 +9,19 @@ env: NODE_VERSION: 16.x jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js $NODE_VERSION + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VERSION }} + - name: Install Modules + run: npm ci + - name: Run ESLint + run: npm run lint + unit-tests: runs-on: ubuntu-latest steps: