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
248 changes: 0 additions & 248 deletions .github/workflows/README.md

This file was deleted.

15 changes: 10 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
bun-version: latest

- name: Install dependencies
run: npm ci
run: bun install --frozen-lockfile

- name: Run validation
run: npm run validate
run: bun run validate

- name: Build package
run: npm run build
run: bun run build

- name: Test package locally
run: |
Expand Down Expand Up @@ -103,11 +103,16 @@ jobs:
scope: '@Excelsi-Innovations'
cache: 'npm'

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: npm ci
run: bun install --frozen-lockfile

- name: Build package
run: npm run build
run: bun run build

- name: Configure package for GitHub
run: |
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,17 +119,16 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
node-version: '20.x'
cache: 'npm'
bun-version: latest

- name: Install dependencies
run: npm ci
run: bun install --frozen-lockfile

- name: Build TypeScript
run: npm run build
run: bun run build

- name: Install pkg
run: npm install -g pkg
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ build/
coverage/
*.lcov
.nyc_output
test.env
test.env.example
test-hash.txt
*.txt

# Environment
.env
Expand Down Expand Up @@ -47,3 +51,4 @@ temp/
# OS
.DS_Store
Thumbs.db

Loading
Loading