Skip to content

Commit

Permalink
Improve CI workflow (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann authored Dec 16, 2024
1 parent b5a8260 commit 926d6e8
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: CI
on:
push:
branches: [master]
branches:
- 'master'
pull_request:
branches: [master]
types:
- 'opened'
- 'synchronize'
- 'reopened'

permissions:
contents: read
Expand All @@ -27,15 +31,13 @@ jobs:
strategy:
matrix:
node: [18, 20]
os: [ubuntu-latest]
eslint: [8, 9]
include:
# On old Node version
- eslint: 8
node: 17
os: ubuntu-latest
- node: 17
eslint: 8

runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 926d6e8

Please sign in to comment.