Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintcache

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Merge Checks
on:
pull_request:
branches:
- main

jobs:
verify:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm

- name: Install dependencies
run: npm ci

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium firefox

- name: Run lint checks
run: npm run lint:check

- name: Run type check
run: npm run type-check

- name: Run unit tests
run: npm test -- --run

- name: Build application
run: npm run build

- name: Run end-to-end tests
run: npm run test:e2e
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ playwright-report/index.html
dist/*
dist/*.html
dist/assets/*
.DS_Store
.DS_Store
apps/simple-telly/dist/*
apps/simple-telly/dist/index.html
.eslintcache
3 changes: 3 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ignorePatterns": ["dist/**", "apps/simple-telly/dist/**", "coverage/**"]
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ npm run build
npm run lint
```

### CI Workflows

Pull requests trigger the [PR workflow](.github/workflows/pull-request-checks.yml). Which runs a number of sanity checks build, e2e, unit tests, linting.

## App Overview

## Project Structure
Expand Down
1 change: 0 additions & 1 deletion apps/simple-telly/dist/assets/ShowDetails-CeCD8q9R.js

This file was deleted.

14 changes: 0 additions & 14 deletions apps/simple-telly/dist/assets/index-BPCyGL7C.js

This file was deleted.

2 changes: 0 additions & 2 deletions apps/simple-telly/dist/assets/index-BojHBPlP.css

This file was deleted.

4 changes: 2 additions & 2 deletions apps/simple-telly/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
<script type="module" crossorigin src="/assets/index-BPCyGL7C.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BojHBPlP.css">
<script type="module" crossorigin src="/assets/index-DdRgVa8W.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BXN6R_-z.css">
</head>
<body>
<div id="app"></div>
Expand Down
Loading
Loading