chore: release v1.1.0 #109
Workflow file for this run
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
name: E2e test | |
on: [push, pull_request] | |
jobs: | |
run-e2e-test: | |
strategy: | |
matrix: | |
version: [16, 18] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Install berry | |
run: corepack enable | |
- name: install dependices | |
run: yarn | |
- name: test 2.x to 4.x | |
run: yarn ava e2e/vite[2-4]/**/*.spec.ts | |
run-stable-e2e-test: | |
strategy: | |
matrix: | |
version: [18,20] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
node-version: ${{ matrix.version }} | |
- name: Install berry | |
run: corepack enable | |
- name: install dependices | |
run: yarn | |
- name: test 5.x | |
run: yarn ava e2e/vite5/**/*.spec.ts | |