mirror of
https://github.com/paulirish/git-open.git
synced 2026-09-10 07:26:15 -04:00
18 lines
360 B
YAML
18 lines
360 B
YAML
language: node_js
|
|
node_js: "node"
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
before_install:
|
|
- git clone --depth 1 https://github.com/sstephenson/bats.git
|
|
install:
|
|
- npm install
|
|
script:
|
|
- npm run lint:package
|
|
- npm run lint:readme
|
|
- npm run lint:editorconfig
|
|
- npm run lint:man
|
|
- shellcheck git-open
|
|
- npm run man
|
|
- ./bats/bin/bats test/*.bats
|