Skip to content

Commit

Permalink
python web-worker port (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfig committed Jul 17, 2023
1 parent 861fd76 commit 88a25b5
Show file tree
Hide file tree
Showing 37 changed files with 823 additions and 534 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Update local toolchain
run: |
rustup update
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
with:
node-version: '19'
cache: 'npm'

- name: Update local rust toolchain
run: |
rustup update
Expand All @@ -27,9 +26,11 @@ jobs:
rustc --version
cargo clippy --version
- run: npm install

- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
npm run build:wasm:nodejs
- run: npm run build:wasm:nodejs
- run: npm install
- run: npm run test:unit:ci
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ quadratic-core/target/
quadratic-api/node_modules/
quadratic-api/.env
quadratic-api/.env.local
quadratic-api/dist
quadratic-api/dist
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"runtimeVersion": "19.9.0",
"name": "vscode-jest-tests.v2",
"request": "launch",
"args": [
"--runInBand",
"--watchAll=false",
"--testNamePattern",
"${jest.testNamePattern}",
"--runTestsByPath",
"${jest.testFile}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"disableOptimisticBPs": true,
"internalConsoleOptions": "neverOpen",
"env": {
"NODE_OPTIONS": "--experimental-vm-modules"
},
"program": "${workspaceFolder}/node_modules/.bin/jest",
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
}
}
]
}
Loading

1 comment on commit 88a25b5

@vercel
Copy link

@vercel vercel bot commented on 88a25b5 Jul 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

quadratic – ./

quadratic-nu.vercel.app
quadratic-quadratic.vercel.app
quadratic-git-main-quadratic.vercel.app

Please sign in to comment.