Skip to content

Merge branch 'main' of https://github.com/devixid/devix #21

Merge branch 'main' of https://github.com/devixid/devix

Merge branch 'main' of https://github.com/devixid/devix #21

Workflow file for this run

name: ESLint workflow
on:
push:
branches: ["main", "development"]
jobs:
eslint:
name: Run ESLint
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
continue-on-error: false
- name: Run ESLint
run: npm run lint -ws
continue-on-error: false