File tree 1 file changed +24
-4
lines changed
1 file changed +24
-4
lines changed Original file line number Diff line number Diff line change 40
40
- eslint : 9
41
41
node : ' lts/*'
42
42
os : macos-latest
43
- # On old ESLint versions
44
- - eslint : 8
45
- node : ' lts/*'
46
- os : ubuntu-latest
47
43
48
44
runs-on : ${{ matrix.os }}
49
45
steps :
63
59
run : npm run -s build
64
60
- name : Test
65
61
run : npm run -s test:mocha
62
+ test-for-old-eslint :
63
+ name : Test
64
+ strategy :
65
+ matrix :
66
+ eslint : [8]
67
+ node : ['lts/*']
68
+ os : [ubuntu-latest]
69
+
70
+ runs-on : ${{ matrix.os }}
71
+ steps :
72
+ - name : Checkout
73
+ uses : actions/checkout@v4
74
+ - name : Checkout submodules
75
+ run : git submodule update --init
76
+ - name : Install Node.js v${{ matrix.node }}
77
+ uses : actions/setup-node@v4
78
+ with :
79
+ node-version : ${{ matrix.node }}
80
+ - name : Install Packages
81
+ run : npm install -f
82
+ - name : Install ESLint v${{ matrix.eslint }}
83
+ run : node scripts/ci-install-eslint ${{ matrix.eslint }}
84
+ - name : Test
85
+ run : npm run -s test:debug
66
86
67
87
test-cov :
68
88
name : Test and Send Coverage
You can’t perform that action at this time.
0 commit comments