openreplay/.github/workflows/frontend-tests.yaml
Андрей Бабушкин 64bdb500c9 updated frontend workflow
2025-05-22 15:03:50 +02:00

28 lines
533 B
YAML

name: Frontend tests
on:
pull_request:
paths:
- 'frontend/**'
- '.github/workflows/frontend-test.yaml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
working-directory: frontend
run: yarn
- name: Run tests
working-directory: frontend
run: yarn test:ci --watchAll