2019-10-03 00:06:28 +10:00
|
|
|
name: "install-nix-action test"
|
2019-09-30 05:52:02 +10:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-18.04, macos]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
|
- run: yarn build
|
|
|
|
- run: yarn test
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
- run: nix-build test.nix
|