Skip to content

Commit

Permalink
chore: migrate from travis-ci to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Dec 21, 2019
1 parent be78616 commit 8ad81a8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 20 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Tests

on:
push:
branches: master

env:
CI: true
NODE_VERSION: 12

jobs:
test:
name: Extension Tests
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}

- run: node --version
- run: npm --version

- name: NPM Install
run: |
npm ci
npm ls --depth=0
- name: Vscode test
run: npm run test
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 8ad81a8

Please sign in to comment.