File tree 3 files changed +25
-3
lines changed
3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ 14
Original file line number Diff line number Diff line change 1
- language : node_js
2
- node_js :
3
- - " 8"
1
+ language : ruby
2
+
3
+ sudo : required
4
+
5
+ addons :
6
+ apt :
7
+ packages :
8
+ - wget
9
+
10
+ jdk :
11
+ - openjdk14
12
+
13
+ before_install :
14
+ - wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
15
+ - source ~/.bashrc
16
+ - nvm install
17
+ - node --version
4
18
5
19
install :
20
+ - bundle install
21
+ - gem install jekyll
6
22
- travis_retry npm install
7
23
8
24
script :
9
25
- npm run lint
26
+ - npm run check:html
Original file line number Diff line number Diff line change 8
8
"lint" : " npm run lint:js && npm run lint:scss" ,
9
9
"lint:js" : " prettier -c --loglevel warn **/*.js" ,
10
10
"lint:scss" : " stylelint _sass" ,
11
+ "check:html" : " bundle exec jekyll build && node _tasks/check-html.mjs" ,
11
12
"test" : " echo \" Error: no test specified\" && exit 1"
12
13
},
13
14
"repository" : {
20
21
"url" : " https://github.com/tc39/tc39.github.io/issues"
21
22
},
22
23
"homepage" : " https://tc39.es/" ,
24
+ "engines" : {
25
+ "node" : " ^14"
26
+ },
23
27
"devDependencies" : {
24
28
"prettier" : " ^1.17.1" ,
25
29
"stylelint" : " ^10.0.1" ,
You can’t perform that action at this time.
0 commit comments