Skip to content

fix: change readme

fix: change readme #2

Workflow file for this run

name: PrePublish
on:
pull_request:
types: [opened, synchronize]
jobs:
prePublish:
name: PrePublish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_ACCESS_TOKEN }}" > .npmrc
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 8
run_install: true
- name: Publish affected project alpha version
run: npx nx affected -t nx release --base=origin/master