diff --git a/.github/workflows/frontend-linting.yml b/.github/workflows/frontend-linting.yml new file mode 100644 index 00000000..b01a320a --- /dev/null +++ b/.github/workflows/frontend-linting.yml @@ -0,0 +1,17 @@ +on: + push: + branches: + - ["develop"] + pull_request: + branches: + - ["develop"] + +jobs: + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm install + - run: npm lint + - run: npm format