You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+34-35Lines changed: 34 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@ node_js:
4
4
- "node"
5
5
6
6
cache:
7
-
yarn: true
8
7
directories:
9
8
- "node_modules"
10
9
@@ -18,44 +17,44 @@ before_install:
18
17
- export RELEASE_BODY=$(node -p "'[Click here to see release changes](https://github.com/$PROJECT_NAME/blob/$TRAVIS_BRANCH/CHANGELOG.md#' + require('./bin/getLatestTag.js') + ')'")
19
18
20
19
install:
21
-
- yarn install --frozen-lockfile
20
+
- npm ci
22
21
23
22
jobs:
24
23
include:
25
24
- stage: lint
26
-
script: yarn lint
25
+
script: npm run lint
27
26
- stage: test
28
27
script:
29
-
- yarn run build
30
-
- yarn test
31
-
#- stage: publish
32
-
# if: env(BRANCH_IS_TAG) != true AND branch = master AND type = push
0 commit comments