🎉 update
This commit is contained in:
parent
3b5c32a9c4
commit
5ae64b104d
|
|
@ -1,25 +0,0 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: circleci/node:latest
|
||||
steps:
|
||||
- checkout
|
||||
- run: npm install
|
||||
- run: npm run lint
|
||||
- run: npm run build
|
||||
test:
|
||||
docker:
|
||||
- image: circleci/node:latest-browsers
|
||||
steps:
|
||||
- checkout
|
||||
- run: npm install
|
||||
- run:
|
||||
command: npm run test:all
|
||||
no_output_timeout: 30m
|
||||
workflows:
|
||||
version: 2
|
||||
build_and_test:
|
||||
jobs:
|
||||
- build
|
||||
- test
|
||||
26
appveyor.yml
26
appveyor.yml
|
|
@ -1,26 +0,0 @@
|
|||
# Test against the latest version of this Node.js version
|
||||
environment:
|
||||
nodejs_version: '10'
|
||||
|
||||
# this is how to allow failing jobs in the matrix
|
||||
matrix:
|
||||
fast_finish: true # set this flag to immediately finish build once one of the jobs fails.
|
||||
|
||||
# Install scripts. (runs after repo cloning)
|
||||
install:
|
||||
# Get the latest stable version of Node.js or io.js
|
||||
- ps: Install-Product node $env:nodejs_version
|
||||
# install modules
|
||||
- npm install
|
||||
# Output useful info for debugging.
|
||||
- node --version
|
||||
- npm --version
|
||||
|
||||
# Post-install test scripts.
|
||||
test_script:
|
||||
- npm run lint
|
||||
- npm run test:all
|
||||
- npm run build
|
||||
|
||||
# Don't actually build.
|
||||
build: off
|
||||
Loading…
Reference in New Issue
Block a user