Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsontr authored Oct 30, 2023
1 parent 1e49a64 commit 8e88c70
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,25 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0 # Ensure full history is fetched

- name: Cache Checkout and Setup-Node
uses: actions/cache@v3
with:
path: |
~/.npm
~/.cache
~/.local/share
key: initial-setup-${{ runner.os }}
restore-keys: |
initial-setup-
- name: Setup Node
uses: actions/setup-node@v3.8.2
with:
node-version: "16"

client_dependencies:
needs:
- setup_stage
Expand Down

0 comments on commit 8e88c70

Please sign in to comment.