Skip to content

Commit

Permalink
chore: Set working directory for frontend build
Browse files Browse the repository at this point in the history
This commit updates the GitHub Actions workflow to set the working directory explicitly for the build job. This ensures that subsequent commands are executed within the correct directory, improving the build process.
  • Loading branch information
sajjadth committed Nov 23, 2023
1 parent fe124cf commit fff82a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nuxtjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Navigate to frontend directory
run: cd frontend
- name: Detect package manager
id: detect-package-manager
run: |
Expand Down

0 comments on commit fff82a6

Please sign in to comment.