Skip to content

Commit

Permalink
ci: also test fixture with webpack + dev
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jul 2, 2022
1 parent 2ab5b8a commit f4e8601
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ jobs:
- name: Test (fixtures)
run: yarn test:fixtures:webpack

- name: Test (fixtures with dev)
run: yarn test:fixtures:webpack:dev

build-release:
if: |
github.event_name == 'push' &&
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"test:fixtures": "yarn dev:prepare && cross-env JITI_ESM_RESOLVE=1 vitest run --dir test",
"test:fixtures:dev": "cross-env NUXT_TEST_DEV=true yarn test:fixtures",
"test:fixtures:webpack": "cross-env TEST_WITH_WEBPACK=1 yarn test:fixtures"
"test:fixtures:webpack": "cross-env TEST_WITH_WEBPACK=1 yarn test:fixtures",
"test:fixtures:webpack:dev": "cross-env TEST_WITH_WEBPACK=1 NUXT_TEST_DEV=true yarn test:fixtures"
},
"dependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
Expand Down

0 comments on commit f4e8601

Please sign in to comment.