Skip to content

Commit

Permalink
Fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Oct 18, 2023
1 parent e41662a commit 3918efb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,14 @@ test-spec-bun:
test-spec-bun-with-coverage:
${BUN} test
.PHONY: test-spec-dom
test-spec-dom:
test-spec-dom: playwright-install
${WEB_TEST_RUNNER} --playwright
.PHONY: test-spec-dom-with-coverage
test-spec-dom-with-coverage:
test-spec-dom-with-coverage: playwright-install
${WEB_TEST_RUNNER} --playwright --coverage
.PHONY: playwright-install
playwright-install:
npx playwright install
.PHONY: test-src-import-restrictions
test-src-import-restrictions: build-lib-js
${BUN_RUN} ./script/test/src/import-restrictions/main.ts
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@
"engines": {
"node": ">=19"
},
"files": ["./dist/bin/", "./dist/lib/"],
"files": [
"./dist/bin/",
"./dist/lib/"
],
"scripts": {
"default": "make default",
"build": "make build",
Expand Down Expand Up @@ -125,6 +128,7 @@
"test-spec-bun-with-coverage": "make test-spec-bun-with-coverage",
"test-spec-dom": "make test-spec-dom",
"test-spec-dom-with-coverage": "make test-spec-dom-with-coverage",
"playwright-install": "make playwright-install",
"test-src-import-restrictions": "make test-src-import-restrictions",
"test-src-tsc": "make test-src-tsc",
"test-src-scripts-consistency": "make test-src-scripts-consistency",
Expand Down

0 comments on commit 3918efb

Please sign in to comment.