Skip to content

Merge pull request #10 from KonferCA/9-fe-create-file-drop-component #8

Merge pull request #10 from KonferCA/9-fe-create-file-drop-component

Merge pull request #10 from KonferCA/9-fe-create-file-drop-component #8

Workflow file for this run

name: Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test:ci
- name: Generate coverage report
run: pnpm coverage