Skip to content

Commit

Permalink
infra: lume cli update: update tests to run in @web/test-runner (repl…
Browse files Browse the repository at this point in the history
…aced Karma in lume cli), update GitHub Actions yml to run clean/build/test separately as they are no longer coupled in lume cli, update build output with changes from the updated target:esnext option in lume cli tsconfig. Note, the dev process in the repo, when standalone and not a git submodule in the lume repo, will not work for now and needs to be developed as part of the lume supermodule repo using the link script for bootstrapping and linking of packages. Once we finish the stage-3-decorators and classy-solid migration in Lume (soon) we will get the lume cli working in standalone repos again.
  • Loading branch information
trusktr committed Oct 30, 2023
1 parent 18942d7 commit 33dad3f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
- name: npm install, build, and test
run: |
npm i
npm run clean
npm run build
npm test
- name: ensure no modifications
run: git add . && git diff --quiet && git diff --cached --quiet
env:
CI: true
12 changes: 5 additions & 7 deletions dist/CustomAttributeRegistry.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/CustomAttributeRegistry.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"dev": "lume dev",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch",
"test": "npm run prettier:check && npm run build && echo TODO use 'lume test'",
"test:debug": "lume testDebug",
"test": "echo TODO use 'lume test'",
"test:watch": "lume test --watch",
"prettier": "lume prettier",
"prettier:check": "lume prettierCheck",
"release:patch": "lume releasePatch",
Expand Down

0 comments on commit 33dad3f

Please sign in to comment.