(ui): Added food-product-detail.tsx
screen with dummy data
#18
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: Lint Dockerfile | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Checkout the repository to get access to the Dockerfile | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Step 2: Run Dockerfile Linter | |
- name: Lint Dockerfile | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_DOCKERFILE: true | |