Linting the code. #30
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: CI/CD Pipeline | |
on: | |
push: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
name: Build Frontend Artifact | |
runs-on: ubuntu-latest | |
needs: audit | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- name: Install Dependencies | |
run: | | |
cd frontend | |
npm i | |
- name: Build artifact | |
run: | | |
cd frontend | |
npm run build | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: frontend/build | |
# - id: build-publish | |
# uses: bitovi/github-actions-react-to-github-pages@v1.2.2 | |
# with: | |
# path: build # change to your build folder | |
audit: | |
name: Audit Frontend Deps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run the audit on production deps only | |
run: npm audit --omit=dev | |
lint: | |
name: 🧼 Ensure Code Style | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- name: Install deps | |
run: cd frontend && npm i | |
- name: 😂 Lint code | |
run: cd frontend && npm run lint | |