refactor: Format files using Prettier

Actual command: `nix-shell --packages nodePackages.prettier --pure --run
'prettier --write .'`.
This commit is contained in:
Victor Engmark 2023-03-10 08:30:04 +13:00
parent fc65b450f1
commit 0df6e96f38
4 changed files with 85 additions and 86 deletions

View file

@ -1,11 +1,10 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: github-actions
- package-ecosystem: github-actions
directory: "/" directory: "/"
schedule: schedule:
interval: daily interval: daily
time: '00:00' time: "00:00"
timezone: UTC timezone: UTC
open-pull-requests-limit: 10 open-pull-requests-limit: 10
commit-message: commit-message:

View file

@ -1,24 +1,24 @@
name: 'Install Nix' name: "Install Nix"
description: 'Installs Nix on GitHub Actions for the supported platforms: Linux and macOS.' description: "Installs Nix on GitHub Actions for the supported platforms: Linux and macOS."
author: 'Domen Kožar' author: "Domen Kožar"
inputs: inputs:
extra_nix_config: extra_nix_config:
description: 'Gets appended to `/etc/nix/nix.conf` if passed.' description: "Gets appended to `/etc/nix/nix.conf` if passed."
github_access_token: github_access_token:
description: 'Configure nix to pull from github using the given github token.' description: "Configure nix to pull from github using the given github token."
install_url: install_url:
description: 'Installation URL that will contain a script to install Nix.' description: "Installation URL that will contain a script to install Nix."
install_options: install_options:
description: 'Additional installer flags passed to the installer script.' description: "Additional installer flags passed to the installer script."
nix_path: nix_path:
description: 'Set NIX_PATH environment variable.' description: "Set NIX_PATH environment variable."
branding: branding:
color: 'blue' color: "blue"
icon: 'sun' icon: "sun"
runs: runs:
using: 'composite' using: "composite"
steps: steps:
- run : ${GITHUB_ACTION_PATH}/install-nix.sh - run: ${GITHUB_ACTION_PATH}/install-nix.sh
shell: bash shell: bash
env: env:
INPUT_EXTRA_NIX_CONFIG: ${{ inputs.extra_nix_config }} INPUT_EXTRA_NIX_CONFIG: ${{ inputs.extra_nix_config }}