Giter Club home page Giter Club logo

action-setup-pnpm's Introduction

Hi there ๐Ÿ‘‹

I like code, StarCraft, Control, swing dancing (lindy hop and collegiate shag are my favorites), coffee, spicy food, and games with friends.

How I manage my screen

When working on a project, I'll have one workspace / vitual desktop that looks like this for each project

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                      โ”‚              โ”‚       โ”‚
โ”‚                      โ”‚              โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚         Editor       โ”‚    Browser   โ”‚       โ”‚
โ”‚                      โ”‚              โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚                      โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค       โ”‚
โ”‚                      โ”‚      |       โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

The smaller empty rectangles are terminals.

And then for chat / discord / slack, it'll look something like this:

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                      โ”‚              โ”‚       โ”‚
โ”‚                      โ”‚              โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚         Browser      โ”‚    Discord   โ”‚       โ”‚
โ”‚                      โ”‚              โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚                      โ”‚              โ”‚       โ”‚
โ”‚                      โ”‚              โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Where all the terminals on the right are temporary for trying stuff out.

Floating window managers (MacOS, Windows) are suboptimal for me. MacOS, in particular, is really bad, and even all the paid tiling software doesn't do what https://i3wm.org/ does

action-setup-pnpm's People

Contributors

leosuncin avatar nullvoxpopuli avatar patricklx avatar poulet42 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

action-setup-pnpm's Issues

jq: command not found

The action is failing with

Run nullvoxpopuli/action-setup-pnpm@v2
  with:
    no-lockfile: false
  env:
    VOLTA_HOME: /__t/volta/1.1.1/x64
Run if [ ! -f "package.json" ]; then 
/__w/_temp/aa16a0db-e6b1-40d9-abb2-16b87a5a09f3.sh: line 9: jq: command not found

This is my workflow

on:
  push:
    branches:
      - main
      - master
  pull_request: {}

jobs:
  server-tests:
    timeout-minutes: 10
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: ['18.3.0']

    container:
      image: node:latest

    services:
      redis:
        image: redis
        # Set health checks to wait until redis has started
        options: >-
          --health-cmd "redis-cli ping"
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5

      postgres:
        image: postgres
        env:
          POSTGRES_USER: arianwellbeing
          POSTGRES_PASSWORD: password
          POSTGRES_DB: arianwellbeing-test
        # Set health checks to wait until postgres has started
        options: >-
          --health-cmd pg_isready
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5

    steps:
      - name: Check out repository code
        uses: actions/checkout@v3

      - name: Configure volta
        uses: volta-cli/action@v4
        with:
          node-version: ${{ matrix.node-version }}

      - name: Install dependencies
        uses: wyvox/action-setup-pnpm@v2

      - name: Run tests
        run: node ace test
        working-directory: ./apps/server
        env:

[Feature Request] Allow to pass arguments to PNPM

I usually install the dependencies with pnpm install --frozen-lockfile --strict-peer-dependencies and it might be a good idea to add an input with the array of arguments, so others can pass whatever options they want

no-lockfile: true complaining lockfile doesn't exist?

Opening an issue here as wyvox/action-setup-pnpm doesn't have an issues section.

My Floating dependencies test in ember-shiki fails with the following error:

Run wyvox/action-setup-pnpm@v2
Run if [ ! -f "package.json" ]; then 
--- Debug ---
inputs.pnpm-version: 
packageManager: 
volta.pnpm: 
--- ----- ---
No pnpm-version override detected
package.json#volta.pnpm was not defined
package.json#packageManager () did not start with 'pnpm' or was not defined.
--
Resolved pnpm @ 8
Run echo "Detected option --no-lockfile. Lockfile will be deleted before install."
Detected option --no-lockfile. Lockfile will be deleted before install.
Run pnpm/action-setup@v2
Running self-installer...
Installation Completed!
Run actions/setup-node@v3
Found in cache @ /opt/hostedtoolcache/node/16.20.2/x64
Environment details
/home/runner/setup-pnpm/node_modules/.bin/pnpm store path --silent
/home/runner/setup-pnpm/node_modules/.bin/store/v3
Error: Dependencies lock file is not found in /home/runner/work/ember-shiki/ember-shiki. Supported file patterns: pnpm-lock.yaml

It seems like after the install there is no generated lockfile? It didn't occur before so I'm quite puzzled what triggered this sudden failure.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.