Skip to content

Commit

Permalink
chore: update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
brunotot committed Sep 1, 2024
1 parent 8866c18 commit a5657c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/composite-actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ description: "Sets up NodeJS and runs install"
runs:
using: composite
steps:
- name: 🤳 Install dependencies
- name: ⚙️ Install PNPM package manager
uses: pnpm/action-setup@v4.0.0
with:
version: 9

- name: 🚧 Setup Node.js
- name: ⚙️ Install Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

- name: ⚙️ Setup Git User
- name: ⓘ Configure Git user
shell: bash
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Install dependencies
- name: 🎯 Run pnpm install
shell: bash
run: pnpm install --no-frozen-lockfile
2 changes: 1 addition & 1 deletion .github/workflows/typedoc-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: typedoc-generator
on:
push:
paths:
- "packages/**"
- "packages/**/src/**"
branches:
- main
workflow_dispatch:
Expand Down

0 comments on commit a5657c3

Please sign in to comment.