Fix: add new search zone option (closes #143) #654
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: Linting | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: Lint Backend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
token: ${{ secrets.SSH_TOKEN }} | |
- name: Install dependencies | |
run: make install-dependencies | |
- name: Build Protos | |
run: make build-protos | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | |
version: v1.50 | |
eslint: | |
name: Lint Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run Frontend Linter | |
run: | | |
cd houston | |
npm install | |
npm run lint |