Skip to content

Commit

Permalink
[fix]Run npm build script when installing packages in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Wernert committed Jan 6, 2023
1 parent 788b0f9 commit 5abb783
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/project_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ jobs:
cache: "npm"
cache-dependency-path: "**/package-lock.json"

- name: Install NPM package
- name: Install + build NPM
working-directory: ./sampleapp
run: npm install
run: |
npm install
npm run build
- name: Install Sample App dependencies
working-directory: ./sampleapp
Expand Down

0 comments on commit 5abb783

Please sign in to comment.