Skip to content

🆒(#81): Correção do yml do lint #2

🆒(#81): Correção do yml do lint

🆒(#81): Correção do yml do lint #2

Workflow file for this run

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: Change to Project Directory
run: cd implementacao-front
- name: Install dependencies
run: |
npm install
- name: Run ESLint
run:
npx eslint . --ext .ts &&
npm run lint