-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from jpkleemans/multiplatform-test
Multiplatform test
- Loading branch information
Showing
3 changed files
with
118 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,126 @@ | ||
name: End-to-end tests | ||
on: [push] | ||
jobs: | ||
cypress-run: | ||
vite-latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cypress run | ||
- name: Install vue | ||
run: npm create vite@latest test-app -- --template vue | ||
|
||
- name: Add example code | ||
run: | | ||
mv ./example/src/App.vue ./test-app/src/App.vue | ||
sed -i 's/ lang="ts"//' ./test-app/src/App.vue | ||
mv ./example/vite.config.ts ./test-app/vite.config.js | ||
mv ./example/src/assets/test.svg ./test-app/src/assets/test.svg | ||
mv ./example/src/assets/style.svg ./test-app/src/assets/style.svg | ||
mv ./example/src/assets/circle.svg ./test-app/src/assets/circle.svg | ||
mv ./example/public/root.svg ./test-app/public/root.svg | ||
- name: Build | ||
run: | | ||
cd test-app | ||
npm install | ||
npm install vite-svg-loader --save-dev | ||
npm run build | ||
- name: Test | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
start: npm run test:preview | ||
|
||
vite-latest-ts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install vue-ts | ||
run: npm create vite@latest test-app -- --template vue-ts | ||
|
||
- name: Add example code | ||
run: | | ||
mv ./example/src/App.vue ./test-app/src/App.vue | ||
mv ./example/vite.config.ts ./test-app/vite.config.ts | ||
mv ./example/src/vite-env.d.ts ./test-app/src/vite-env.d.ts | ||
mv ./example/src/assets/test.svg ./test-app/src/assets/test.svg | ||
mv ./example/src/assets/style.svg ./test-app/src/assets/style.svg | ||
mv ./example/src/assets/circle.svg ./test-app/src/assets/circle.svg | ||
mv ./example/public/root.svg ./test-app/public/root.svg | ||
- name: Build | ||
run: | | ||
cd test-app | ||
npm install | ||
npm install vite-svg-loader --save-dev | ||
npm run build | ||
- name: Test | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
start: npm run test:preview | ||
|
||
vite-4: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install vue | ||
run: npm create vite@4 test-app -- --template vue | ||
|
||
- name: Add example code | ||
run: | | ||
mv ./example/src/App.vue ./test-app/src/App.vue | ||
sed -i 's/ lang="ts"//' ./test-app/src/App.vue | ||
mv ./example/vite.config.ts ./test-app/vite.config.js | ||
mv ./example/src/assets/test.svg ./test-app/src/assets/test.svg | ||
mv ./example/src/assets/style.svg ./test-app/src/assets/style.svg | ||
mv ./example/src/assets/circle.svg ./test-app/src/assets/circle.svg | ||
mv ./example/public/root.svg ./test-app/public/root.svg | ||
- name: Build | ||
run: | | ||
cd test-app | ||
npm install | ||
npm install vite-svg-loader --save-dev | ||
npm run build | ||
- name: Test | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
start: npm run test:preview | ||
|
||
vite-4-ts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install vue-ts | ||
run: npm create vite@4 test-app -- --template vue-ts | ||
|
||
- name: Add example code | ||
run: | | ||
mv ./example/src/App.vue ./test-app/src/App.vue | ||
mv ./example/vite.config.ts ./test-app/vite.config.ts | ||
mv ./example/src/vite-env.d.ts ./test-app/src/vite-env.d.ts | ||
mv ./example/src/assets/test.svg ./test-app/src/assets/test.svg | ||
mv ./example/src/assets/style.svg ./test-app/src/assets/style.svg | ||
mv ./example/src/assets/circle.svg ./test-app/src/assets/circle.svg | ||
mv ./example/public/root.svg ./test-app/public/root.svg | ||
- name: Build | ||
run: | | ||
cd test-app | ||
npm install | ||
npm install vite-svg-loader --save-dev | ||
npm run build | ||
- name: Test | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
build: npm run example:build | ||
start: npm run example:preview | ||
env: | ||
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | ||
start: npm run test:preview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters