Render icon per site type #28
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
name: Frontend PR validation | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "canopeum_frontend/**" | |
- ".github/workflows/canopeum_frontend_pr_validation.yml" | |
pull_request: | |
branches: | |
- main | |
- production | |
paths: | |
- "canopeum_frontend/**" | |
- ".github/workflows/canopeum_frontend_pr_validation.yml" | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: canopeum_frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm ci | |
- run: npm run lint | |
Build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: canopeum_frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm ci | |
- run: npm run build |