Skip to content

Merge pull request #402 from r-k-b/dependabot/npm_and_yarn/cypress-13… #379

Merge pull request #402 from r-k-b/dependabot/npm_and_yarn/cypress-13…

Merge pull request #402 from r-k-b/dependabot/npm_and_yarn/cypress-13… #379

Workflow file for this run

name: "Build with Nix & Cachix"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
environment: someEnviro
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v12
with:
name: r-k-b
# If you chose signing key for write access
#signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
# If you chose API tokens for write access OR if you have a private cache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build .
- run: nix shell --command echo "Computer says OK."