22 lines
No EOL
372 B
YAML
22 lines
No EOL
372 B
YAML
name: Test action
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
hello:
|
|
name: Print hello world
|
|
runs-on: default
|
|
steps:
|
|
- name: Install deps
|
|
run: >-
|
|
nix shell
|
|
nixpkgs#nodejs_24
|
|
--extra-experimental-features "nix-command flakes"
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: nix flake check |