Skip to content
Merged
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
10 changes: 1 addition & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: CI
on:
push:
branches: [master]
pull_request:
env:
NODE_VERSION: "22"
PNPM_VERSION: "9"
ETHERPAD_DOMAIN: "${{ secrets.ETHERPAD_DOMAIN }}"
jobs:
test:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -25,7 +25,6 @@ jobs:
- name: Test
run: pnpm test
test-snapshot:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -42,7 +41,6 @@ jobs:
- name: Test
run: pnpm test:snapshot
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -59,7 +57,6 @@ jobs:
- name: Build
run: pnpm run build
check:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -76,7 +73,6 @@ jobs:
- name: Check
run: pnpm run check
typescript:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -93,7 +89,6 @@ jobs:
- name: Check types
run: pnpm run check:ts
lint:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -110,7 +105,6 @@ jobs:
- name: Run eslint
run: pnpm run lint
formatting:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -127,7 +121,6 @@ jobs:
- name: Check formatting
run: pnpm prettier --check .
outdated:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -144,7 +137,6 @@ jobs:
- name: Check outdated
run: pnpm outdated
knip:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading