We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5181fc9 commit dcb331dCopy full SHA for dcb331d
.travis.yml
@@ -1,17 +1,13 @@
1
language: node_js
2
-before_install:
3
- - curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
4
- - sudo yum install yarn
5
- - export PATH="$HOME/.yarn/bin:$PATH"
6
-cache:
+cache:
7
yarn: true
8
directories:
9
- node_modules
10
os:
11
- - "linux"
+ - 'linux'
12
node_js:
13
- - "12"
+ - '12'
14
script:
15
- - "npm test"
+ - 'npm test'
16
after_script:
17
- - "npm run coverage"
+ - 'npm run coverage'
examples/index.ts
@@ -16,6 +16,7 @@ const instance = Such.instance({
await Such.loadData();
for (let i = 0; i < 3; i++) {
18
const value = await instance.a();
19
+ // eslint-disable-next-line no-console
20
console.log(value);
21
}
22
})();
0 commit comments