💡(#88): Autocomplete/ buscador com todos os municípios do RS #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | | |
cd implementacao-front && | |
npm init @eslint/config && | |
npm install && | |
npm install primereact | |
- name: Run ESLint | |
run: | |
cd implementacao-front && | |
npx eslint . --ext .ts && | |
npm run lint |