chore(deps): update dependency vite to v6 #1629
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: CI | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest changes | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn | |
- name: Build | |
run: yarn workspace @storipress/unplugin-eta build | |
- name: Install Playwright Browsers | |
run: yarn workspace unplugin-eta-playground playwright install --with-deps | |
- name: Run test script | |
run: yarn workspace unplugin-eta-playground test:all | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: packages/playground/playwright-report/ | |
retention-days: 7 |