Skip to content

chore(git): attempt git action setup #3

chore(git): attempt git action setup

chore(git): attempt git action setup #3

Workflow file for this run

name: pnpm Example Workflow
on:
push:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [15]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
# close now but stuck on pnpm actions
# can update to be an nx repo but that won;t solve
# here is good; https://medium.com/@guysenpai89/nx-monorepo-publish-your-libraries-to-github-packages-with-github-actions-semantic-release-fa9822467b24
# but he is publising to github actions. can do that but adapt end to publish npm?