Skip to content

Commit

Permalink
ci: add package build step for playground e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot-Alexander committed Jan 13, 2024
1 parent fd43131 commit b28a7b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build package
run: pnpm run build-package

- name: Install Playwright browsers
run: pnpm dlx playwright install --with-deps

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"eslint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"eslint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"test": "pnpm -r test",
"release": "pnpm -r release"
"release": "pnpm -r release",
"build-package": "pnpm --filter vaul-vue build-only"
},
"packageManager": "[email protected]",
"devDependencies": {
Expand Down

0 comments on commit b28a7b7

Please sign in to comment.