Skip to content

Commit

Permalink
🆒(#81): Adição do ESLint ao pipeline do front
Browse files Browse the repository at this point in the history
Co-authored-by: Ana Borges <[email protected]>
  • Loading branch information
BrunoHDuarte2 and anabborges committed Nov 29, 2023
1 parent e419601 commit 2c782e9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/jsLint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Python CI

on:
pull_request:
push:
branches:
- front-end


jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Instalando o node
uses: actions/setup-node@v4
with:
node-version: '16.14.0'

- name: Install dependencies
run: |
npm install
- name: Run ESLint
run:
cd implementacao-front &&
npx eslint . --ext .ts &&
npm run lint

0 comments on commit 2c782e9

Please sign in to comment.