Skip to content

chore(deps): bump vite v6 #128

chore(deps): bump vite v6

chore(deps): bump vite v6 #128

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
PROJECT: projects/kitchensink/
REACT_APP_SHELL_ENV_MESSAGE: REACT_APP_SHELL_ENV_MESSAGE
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/cache@v4
with:
path: "node_modules"
key: node_modules-${{ hashFiles('package-lock.json') }}
- uses: actions/cache@v4
with:
path: ${{ env.PROJECT }}${{ 'node_modules' }}
key: ${{ env.PROJECT }}node_modules-${{ hashFiles('package-lock.json') }}
- run: npm install
- run: npm run build
- run: npx playwright install --with-deps
- run: node ../../bin/viject.js
working-directory: ${{ env.PROJECT }}
- run: npm install
working-directory: ${{ env.PROJECT }}
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30