Skip to content

Commit

Permalink
Added travis and appveyor configs back
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed Sep 23, 2019
1 parent 63781fe commit 7ca1638
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 40 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/build.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
os:
- osx

language: node_js
node_js:
"12"

install:
- yarn install

before_script:
- export NODE_ENV=production

script:
- yarn tsc:validate
- yarn lint
- yarn bundle
- yarn test
- yarn package:publish
24 changes: 24 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
image: Visual Studio 2017

environment:
nodejs_version: "12"

platform:
- x64

install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) x64
- node --version
- yarn install

before_build:
- set NODE_ENV=production

build_script:
- yarn tsc:validate
- yarn lint
- yarn bundle
- yarn test
- yarn package:publish

test: off

0 comments on commit 7ca1638

Please sign in to comment.