Skip to content

Commit

Permalink
fix yaml file for GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PixelSculptor committed Dec 21, 2023
1 parent 0dafcb0 commit 319f20e
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/frontendWorkflowTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ jobs:
uses: actions/checkout@v3
with:
node-version: '18.16.x'
- name: Go to Frontend Dir
run: cd ./frontend
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm run test
- name: Run Eslint
run: npm run lint
- name: Check build project
run: npm run build
- name: Install dependencies
run: |
cd ./frontend
npm run ci
- name: Run Frontend Unit Tests
run: |
cd ./frontend
npm run test
- name: Run Linter
run: |
cd ./frontend
npm run lint
- name: Build project
run: |
cd ./frontend
npm run build

0 comments on commit 319f20e

Please sign in to comment.