Skip to content

Commit

Permalink
fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
milachae committed May 10, 2024
1 parent ed90fb6 commit fb203a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
with:
node-version: 20
- run: npm install
- run: node docs/data/preprocessingData.js
- run: npm run build
- run: node docs/data/allFilteredData.js
- run: npm run build:mem
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"private": true,
"scripts": {
"clean": "rimraf docs/.observablehq/cache",
"build:mem": "set NODE_OPTIONS=--max_old_space_size=4096 && npm run build",
"build:mem": "NODE_OPTIONS=--max_old_space_size=4096 && npm run build",
"build": "rimraf dist && observable build",
"dev:mem": "set NODE_OPTIONS=--max_old_space_size=4096 && npm run dev",
"dev:mem": "NODE_OPTIONS=--max_old_space_size=4096 && npm run dev",
"dev": "observable preview",
"deploy": "observable deploy",
"observable": "observable"
Expand Down

0 comments on commit fb203a2

Please sign in to comment.