Skip to content

Commit

Permalink
add Code Analysis Frontend (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
alinaSielina authored Aug 24, 2023
2 parents 4af6e50 + ef454be commit 254b473
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/code-analysis-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Code Analysis Frontend
on:
push:
branches: [main, development ]
pull_request:
# The branches below must be a subset of the branches above
branches: [main, development ]
jobs:
analyze_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install packages
run: |
cd frontend
yarn install --frozen-lockfile
- name: Eslint and Prettier checks
run: |
cd frontend
yarn lint:check
yarn prettier:check

0 comments on commit 254b473

Please sign in to comment.