15 lines
438 B
YAML
15 lines
438 B
YAML
---
|
|
on: push
|
|
jobs:
|
|
nix_build:
|
|
name: Build Nix targets
|
|
runs-on: docker
|
|
container:
|
|
image: ubuntu:24.04
|
|
options: --user root
|
|
steps:
|
|
- name: Hack container for local development
|
|
run: echo /home/runner/externals/node20/bin >> ${{ GITHUB_ACTION_PATH }}
|
|
- uses: actions/checkout@v4
|
|
- name: Check Nix flake inputs
|
|
uses: https://github.com/DeterminateSystems/flake-checker-action@v5
|