Skip to content

Commit

Permalink
chore: add windows ci via github actions (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
RasPhilCo authored May 11, 2020
1 parent 0080508 commit a980814
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 20 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
env:
CI: true
- run: yarn test
env:
CI: true
20 changes: 0 additions & 20 deletions appveyor.yml

This file was deleted.

0 comments on commit a980814

Please sign in to comment.