Skip to content

Commit

Permalink
fix(github): build:types:gjs -> validate:types:all
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpLink committed Feb 25, 2024
1 parent b58bd9c commit 34805ee
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ jobs:
run: sudo apt-get --yes install build-essential gobject-introspection libgirepository1.0-dev libcairo2 libcairo2-dev
- run: yarn install
- run: yarn run build
- run: NODE_OPTIONS=--max_old_space_size=9216 yarn run build:types:gjs
- run: NODE_OPTIONS=--max_old_space_size=9216 yarn run validate:types:gjs
- run: NODE_OPTIONS=--max_old_space_size=9216 yarn run build:types:all
- run: NODE_OPTIONS=--max_old_space_size=9216 yarn run validate:types:all
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"sourceMaps": true,
},
{
"name": "build:types:gjs",
"name": "build:types:all",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}/packages/cli",
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
"publish:types:next": "yarn workspaces foreach -v --all --parallel --no-private --include '@girs/*' npm publish --tolerate-republish --tag next --access public",
"publish:types:latest": "yarn workspaces foreach -v --all --parallel --no-private --include '@girs/*' npm publish --tolerate-republish --tag latest --access public",
"test": "yarn build:all && yarn test:girs:all && yarn validate:examples && yarn start:cli-examples:all",
"test:girs:all": "yarn clear:types && yarn build:types:all && yarn validate:types:root",
"test:girs:gjs": "yarn clear:types && yarn build:types && yarn validate:types:root",
"test:girs:gjs:vda1": "yarn clear:types && yarn build:types:vda1 && yarn validate:types:root",
"test:girs:gjs:gtk2": "yarn clear:types && yarn build:types:gtk2 && yarn validate:types:root",
"test:girs:gjs:gtk3": "yarn clear:types && yarn build:types:gtk3 && yarn validate:types:root",
"test:girs:gjs:gtk4": "yarn clear:types && yarn build:types:gtk4 && yarn validate:types:root",
"test:girs:gjs:gtk3+gtk4": "yarn clear:types && yarn build:types:gtk3+gtk4 && yarn validate:types:root",
"test:girs:gjs:gio": "yarn clear:types && yarn build:types:gio && yarn validate:types:root",
"test:girs:gjs:vte4": "yarn clear:types && yarn build:types:vte4 && yarn validate:types:root",
"test:girs:gjs:modemmanager1": "yarn clear:types && yarn build:types:modemmanager1 && yarn validate:types:root",
"test:girs:gjs:timezonemap1": "yarn clear:types && yarn build:types:timezonemap1 && yarn validate:types:root",
"test:girs:gjs:rygelcore2": "yarn clear:types && yarn build:types:rygelcore2 && yarn validate:types:root",
"test:girs:gjs:gcalc": "yarn clear:types && yarn build:types:gcalc && yarn validate:types:root",
"test:girs:all": "yarn clear:types && yarn build:types:all && yarn validate:types:all",
"test:girs:gjs": "yarn clear:types && yarn build:types && yarn validate:types:all",
"test:girs:gjs:vda1": "yarn clear:types && yarn build:types:vda1 && yarn validate:types:all",
"test:girs:gjs:gtk2": "yarn clear:types && yarn build:types:gtk2 && yarn validate:types:all",
"test:girs:gjs:gtk3": "yarn clear:types && yarn build:types:gtk3 && yarn validate:types:all",
"test:girs:gjs:gtk4": "yarn clear:types && yarn build:types:gtk4 && yarn validate:types:all",
"test:girs:gjs:gtk3+gtk4": "yarn clear:types && yarn build:types:gtk3+gtk4 && yarn validate:types:all",
"test:girs:gjs:gio": "yarn clear:types && yarn build:types:gio && yarn validate:types:all",
"test:girs:gjs:vte4": "yarn clear:types && yarn build:types:vte4 && yarn validate:types:all",
"test:girs:gjs:modemmanager1": "yarn clear:types && yarn build:types:modemmanager1 && yarn validate:types:all",
"test:girs:gjs:timezonemap1": "yarn clear:types && yarn build:types:timezonemap1 && yarn validate:types:all",
"test:girs:gjs:rygelcore2": "yarn clear:types && yarn build:types:rygelcore2 && yarn validate:types:all",
"test:girs:gjs:gcalc": "yarn clear:types && yarn build:types:gcalc && yarn validate:types:all",
"build": "yarn build:parser && yarn build:lib && yarn build:generators && yarn build:cli",
"build:parser": "yarn workspace @gi.ts/parser run build",
"build:cli": "yarn workspace @ts-for-gir/cli run build",
Expand Down Expand Up @@ -62,7 +62,7 @@
"validate": "yarn workspaces foreach -v --all --parallel run validate",
"validate:types": "yarn workspaces foreach -v --all --parallel run validate:types",
"validate:examples": "yarn workspaces foreach -v --all --parallel run validate:app",
"validate:types:root": "NODE_OPTIONS=--max_old_space_size=9216 tsc --project tsconfig.json",
"validate:types:all": "NODE_OPTIONS=--max_old_space_size=9216 tsc --project tsconfig.json",
"clear": "yarn clear:build && yarn clear:types",
"clear:build": "yarn workspaces foreach -v --include '@ts-for-gir/*' run clear:build",
"clear:types": "rimraf ./@types",
Expand Down

0 comments on commit 34805ee

Please sign in to comment.