Skip to content

Commit ecf67f5

Browse files
committed
Fix things certain dependencies not being specified correctly
1 parent 174983c commit ecf67f5

File tree

30 files changed

+44
-31
lines changed

30 files changed

+44
-31
lines changed

.github/workflows/workflow-again.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
find-packages:
13-
name: Get information about the packages within the repository
13+
name: Get packages within the repository
1414
runs-on: ubuntu-latest
1515

1616
steps:
@@ -38,7 +38,7 @@ jobs:
3838
libs: ${{ steps.info.outputs.libs }}
3939

4040
tabs:
41-
name: Do work with the tabs
41+
name: Tabs
4242
runs-on: ubuntu-latest
4343
needs: find-packages
4444
strategy:
@@ -65,11 +65,16 @@ jobs:
6565
- name: Build Tab
6666
run: yarn workspaces foreach -A --include ${{ matrix.tabInfo.name }} run build
6767

68+
- name: Test Tab
69+
if: matrix.tabInfo.changes == 'true' && matrix.tabInfo.needsPlaywright
70+
run: |
71+
cd ${{ matrix.tabInfo.directory }}
72+
yarn playwright install --with-deps
73+
yarn test
74+
6875
- name: Run Auxillary Tasks
6976
if: matrix.tabInfo.changes == 'true'
7077
run: |
7178
cd ${{ matrix.tabInfo.directory }}
7279
yarn tsc
7380
yarn lint
74-
yarn playwright install --with-deps
75-
yarn test

src/bundles/ar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"test": "buildtools test --project .",
2323
"postinstall": "yarn tsc"
2424
}
25-
}
25+
}

src/bundles/binary_tree/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"test": "buildtools test --project .",
1919
"postinstall": "yarn tsc"
2020
}
21-
}
21+
}

src/bundles/communication/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
"lint": "buildtools lint .",
2424
"postinstall": "yarn tsc"
2525
}
26-
}
26+
}

src/bundles/copy_gc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"test": "buildtools test --project .",
1919
"postinstall": "yarn tsc"
2020
}
21-
}
21+
}

src/bundles/csg/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"@jscad/modeling": "patch:@jscad/modeling@npm%3A2.9.6#~/.yarn/patches/@jscad-modeling-npm-2.9.6-71e6aa3a91.patch",
77
"@jscad/regl-renderer": "^2.6.1",
88
"@jscad/stl-serializer": "2.1.11",
9+
"@sourceacademy/modules-lib": "workspace:^",
910
"save-file": "^2.3.1"
1011
},
1112
"exports": {
@@ -24,4 +25,4 @@
2425
"test": "buildtools test --project .",
2526
"postinstall": "yarn tsc"
2627
}
27-
}
28+
}

src/bundles/curve/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"tsc": "buildtools tsc .",
2525
"postinstall": "yarn tsc"
2626
}
27-
}
27+
}

src/bundles/game/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
"test": "buildtools test --project .",
2323
"postinstall": "yarn tsc"
2424
}
25-
}
25+
}

src/bundles/mark_sweep/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"test": "buildtools test --project .",
1919
"postinstall": "yarn tsc"
2020
}
21-
}
21+
}

src/bundles/midi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
".": "./dist/index.js",
2020
"./*": "./dist/*.js"
2121
}
22-
}
22+
}

0 commit comments

Comments
 (0)