Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @staffbase-robert @0x46616c6b @flaxel
* @staffbase-robert @0x46616c6b @flaxel @1uweb
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ categories:
labels:
- 'chore'
- 'dependencies'
- title: '🧹 Documentation'
labels:
- 'documentation'
template: |
## Changes
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,20 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache: 'pnpm'

- name: Install Dependencies
run: npm ci
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Rebuild the dist/ directory
run: npm run build
run: pnpm run build

- name: Compare the expected and actual dist/ directories
run: |
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache: 'pnpm'

- name: Install Dependencies
run: npm install
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Build Action
run: npm run all
run: pnpm run all

test:
name: Test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ You can create a new release by creating a new tag and bump the version in `pack
Very nice that you want to work on the action. To create a working implementation, you can use the following command to perform all the necessary actions.

```bash
npm run all
pnpm run all
```

<table>
Expand Down
Loading