name: Nix Web Proxy Worker run-name: Web Proxy - Nix on: [push, merge] jobs: setup-nixos-runner: run-on: ubuntu-latest container: image: node:lts steps: - uses: actions/checkout@v4 - name: echo in image run: echo "Hello Workflow world!" - name: List current folder run: ls -la - name: Install Nix run: | curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install > installer.sh chmod +x installer.sh ./installer.sh --daemon --yes