2019-10-02 14:06:28 +00:00
|
|
|
name: "install-nix-action test"
|
2019-09-29 19:52:02 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-11-07 09:10:36 +00:00
|
|
|
os: [ubuntu-18.04, macos-latest]
|
2019-09-29 19:52:02 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
|
- run: yarn build
|
2019-10-02 14:36:06 +00:00
|
|
|
# TODO: just commit it using github
|
|
|
|
- run: git diff --exit-code
|
2019-09-29 19:52:02 +00:00
|
|
|
- run: yarn test
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
2019-11-19 10:50:49 +00:00
|
|
|
- run: nix-env -iA cachix -f https://github.com/NixOS/nixpkgs/tarball/ab5863afada3c1b50fc43bf774b75ea71b287cde
|
2019-11-19 11:03:06 +00:00
|
|
|
- run: cat /etc/nix/nix.conf
|
|
|
|
# cachix should be available and be able to configure a cache
|
2019-11-19 11:35:01 +00:00
|
|
|
- run: cachix use cachix
|
|
|
|
- run: nix-build test.nix
|