fix: remove Vet text from search page #371
Workflow file for this run
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
# Setup an action to run the frontend CI for PRs | |
# name of the action | |
name: Frontend CI | |
# when should it run | |
on: | |
pull_request: | |
branches: | |
- main | |
# what should it do | |
jobs: | |
# name of the job | |
build: | |
# what should it run on | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
# default values for all the steps | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Run build | |
run: npm run build | |
- name: Run tests | |
run: npm test | |
- name: Run formatter + linter | |
run: npm run check |