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:
|
2019-11-07 20:10:36 +11:00
|
|
|
os: [ubuntu-18.04, macos-latest]
|
2019-09-30 05:52:02 +10:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
|
- run: yarn build
|
2019-10-03 00:36:06 +10:00
|
|
|
# TODO: just commit it using github
|
|
|
|
- run: git diff --exit-code
|
2019-09-30 05:52:02 +10:00
|
|
|
- run: yarn test
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
2019-11-07 20:10:36 +11:00
|
|
|
- run: nix-build test.nix
|
2019-11-19 21:50:49 +11:00
|
|
|
- run: nix-env -iA cachix -f https://github.com/NixOS/nixpkgs/tarball/ab5863afada3c1b50fc43bf774b75ea71b287cde
|
2019-11-19 22:03:06 +11:00
|
|
|
- run: cat /etc/nix/nix.conf
|
|
|
|
# cachix should be available and be able to configure a cache
|
|
|
|
- run: cachix use cachix
|