Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsontr authored Nov 1, 2023
1 parent 48a0692 commit 9b5d3df
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
cd client
npm run build
cd ..
- name: Cache Client Dependencies
uses: actions/cache@v3.3.2
with:
path: |
/home/runner/work/neiist-website/neiist-website/client
key: client-setup-${{ runner.os }}

server_dependencies:
needs:
Expand All @@ -86,6 +92,12 @@ jobs:
cd server
npm install
cd ..
- name: Cache Client Dependencies
uses: actions/cache@v3.3.2
with:
path: |
/home/runner/work/neiist-website/neiist-website/server
key: server-setup-${{ runner.os }}

client_testing:
needs:
Expand Down

0 comments on commit 9b5d3df

Please sign in to comment.