Skip to content

Commit

Permalink
chore(ci): test on windows/macos
Browse files Browse the repository at this point in the history
  • Loading branch information
williamluke4 committed Jan 4, 2021
1 parent a5160af commit d91cf83
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ name: ci
on: [push]

jobs:
wip:
env:
DATABASE_URL: "file:../config.db"
strategy:
matrix:
node-version: [14.x]
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn --immutable

- name: Build
run: yarn build
- name: CLI
run: yarn cli -h
test:
env:
DATABASE_URL: "file:../config.db"
Expand Down

0 comments on commit d91cf83

Please sign in to comment.