Skip to content

test

test #34

Workflow file for this run

name: em2024 CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
- name: Set Timezone
run: sudo timedatectl set-timezone Europe/Berlin
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies with pnpm
run: pnpm install
- name: init demo data
run: pnpm run init-demo-data
- name: Run tests with Vitest
run: pnpm exec vitest
#
# - name: Install Playwright Dependencies
# run: npx playwright install-deps
#
# - name: Install Playwright Browsers
# run: npx playwright install
#
# - name: Run Playwright tests
# run: pnpm exec playwright test