simondotm / nx-firebase

Firebase plugin for Nx Monorepos
https://www.npmjs.com/package/@simondotm/nx-firebase
MIT License
175 stars 31 forks source link

Dependabot PR's dont run `postinstall` script #218

Open simondotm opened 2 months ago

simondotm commented 2 months ago

Dependabot auto versions update is cool, but it doesn't run postinstall script, which generates the package versions manifest for the plugin to use.

Will need to add another action to do this:

on:
  push:
    branches:
      - dependabot/npm_and_yarn/**
  pull_request:
    branches:
      - dependabot/npm_and_yarn/**

... do `pnpm install` and `commit` here