Skip to content

Commit

Permalink
deploy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Nov 3, 2024
1 parent 59a38ea commit 0193730
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,19 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'

- name: Enable NPM Debugging
run: echo "export DEBUG=npm:*" >> $GITHUB_ENV

- name: Update npm
run: npm install -g npm@latest

- name: Clear npm cache
run: npm cache clean --force

- name: Install Dependencies
run: npm install
run: npm ci --loglevel verbose

- name: Build
run: npm run build
Expand Down

0 comments on commit 0193730

Please sign in to comment.