Skip to content

Vite migration

Vite migration #94

Workflow file for this run

name: PR
on:
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/[email protected]
- name: Install Dependencies
run: npm i
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Tests
run: npm run test:ci
- name: Run Build
run: npm run build