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
5 changes: 4 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- master
- "**"
pull_request:
types: [opened, synchronize]

Expand All @@ -15,6 +15,7 @@ on:

jobs:
build:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, windows-2022, windows-2025]
Expand All @@ -41,6 +42,7 @@ jobs:

codeQuality:
name: Code quality
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
needs: [build]
runs-on: ubuntu-24.04
steps:
Expand All @@ -62,6 +64,7 @@ jobs:

nodeJsBaselineAptCompatibility:
name: NodeJS installed from stock Ubuntu-LTS packages (not external sources)
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-24.04
container:
image: "ubuntu:24.04"
Expand Down