Run action on different platforms (#65)

This commit is contained in:
Sergey Vilgelm
2020-08-03 09:35:08 -05:00
committed by GitHub
parent 809d3b078b
commit 6317259e28
6 changed files with 147 additions and 24 deletions

View File

@ -15,7 +15,13 @@ jobs:
npm install
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ./