15 lines
276 B
YAML
15 lines
276 B
YAML
language: node_js
|
|
node_js:
|
|
- '10'
|
|
|
|
before_script:
|
|
- yarn install
|
|
|
|
script:
|
|
# Linting
|
|
- yarn lint-js
|
|
- yarn lint-sass
|
|
# Check that dist files are built correctly
|
|
- yarn build
|
|
- git diff-files --quiet -w --relative=dist
|
|
- git diff --name-status --relative=dist
|