Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

florian-sanders-cc is testing out GitHub Actions πŸš€ #31

florian-sanders-cc is testing out GitHub Actions πŸš€

florian-sanders-cc is testing out GitHub Actions πŸš€ #31

Workflow file for this run

name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
on: [push]
jobs:
Prefetch-npm-deps:
runs-on: ubuntu-latest
outputs:
NPM_DEPS_HASH: ${{ steps.prefetch.outputs.NPM_DEPS_HASH }}
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.PERSO_TOKEN }}
nix_path: nixpkgs=channel:nixos-unstable
- name: Install prefetch-npm-deps
run: nix-env -i prefetch-npm-deps -f '<nixpkgs>'
- name: prefetch
id: prefetch
run: echo "NPM_DEPS_HASH=$(prefetch-npm-deps package-lock.json)" >> $GITHUB_OUTPUT
- name: update
run: echo "hello ${{ steps.prefetch.outputs.NPM_DEPS_HASH }}"