56: As a developer I want to have service to get all actions from the console app #58
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: 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: 18.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 |