24 lines
No EOL
415 B
YAML
24 lines
No EOL
415 B
YAML
name: Test action
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
hello:
|
|
name: Print hello world
|
|
runs-on: ubuntu
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install deps
|
|
use: https://github.comm/cachix/install-nix-action@6f18c7d1a145e4641d9782bead417bfdf850680b
|
|
|
|
- run: whoami
|
|
- run: node -v
|
|
- run: nix --version
|
|
|
|
|
|
- run: nix flake check |