Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6f94d7ef6e41c5aeee83e779170f3c180cae518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dist: xenial
sudo: required

language: node_js
node_js:
  - "lts/*"
  - "14"

install:
  - wget "https://github.com/gohugoio/hugo/releases/download/v${HUGO_RELEASE}/hugo_extended_${HUGO_RELEASE}_Linux-64bit.deb"
  - sudo dpkg -i hugo*.deb
  - yarn install

script:
  - hugo version
  - yarn test
  - yarn clean
  - yarn build

env:
  global:
    - PRODUCTION=true
    - HUGO_RELEASE=0.75.1