We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a8260 commit 926d6e8Copy full SHA for 926d6e8
.github/workflows/CI.yml
@@ -1,9 +1,13 @@
1
name: CI
2
on:
3
push:
4
- branches: [master]
+ branches:
5
+ - 'master'
6
pull_request:
7
+ types:
8
+ - 'opened'
9
+ - 'synchronize'
10
+ - 'reopened'
11
12
permissions:
13
contents: read
@@ -27,15 +31,13 @@ jobs:
27
31
strategy:
28
32
matrix:
29
33
node: [18, 20]
30
- os: [ubuntu-latest]
34
eslint: [8, 9]
35
include:
36
# On old Node version
- - eslint: 8
- node: 17
- os: ubuntu-latest
37
+ - node: 17
38
+ eslint: 8
39
- runs-on: ${{ matrix.os }}
40
+ runs-on: ubuntu-latest
41
steps:
42
- name: Checkout
43
uses: actions/checkout@v3
0 commit comments