Skip to content

Commit

Permalink
fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Dario Digregorio committed Jan 15, 2024
1 parent 8c12faa commit 6d29a12
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/frontend-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- uses: actions/setup-node@v3
- name: Setup Angular
run: npm install -g @angular/cli
- name: Install Dependencies
run: npm install
- name: Test Angular Project
run: npm run test

Expand All @@ -30,6 +32,8 @@ jobs:
- uses: actions/setup-node@v3
- name: Setup Angular
run: npm install -g @angular/cli
- name: Install Dependencies
run: npm install
- name: Lint Angular Project
run: npm run lint

Expand All @@ -43,6 +47,8 @@ jobs:
- uses: actions/setup-node@v3
- name: Setup Angular
run: npm install -g @angular/cli
- name: Install Dependencies
run: npm install
- name: Check Format Angular Project
run: npx prettier -w .

Expand All @@ -55,6 +61,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- name: Setup Angular
run: npm install -g @angular/cli
- name: Install Dependencies
run: npm install
- name: Check Format Angular Project
run: npm run build --prod
- name: Archive build bundle
Expand Down

0 comments on commit 6d29a12

Please sign in to comment.