21 lines
No EOL
309 B
YAML
21 lines
No EOL
309 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 -p nodejs_24
|
|
|
|
- run: echo "$PATH"
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: nix flake check |