CI fix
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-02-25 22:45:55 +01:00
parent 8d276d2fbf
commit 02da3df8eb
7 changed files with 18 additions and 14 deletions

View File

@@ -12,5 +12,5 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun run lint:tsc
- name: Build
run: bun run build

View File

@@ -21,12 +21,8 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: |
cd packages/reffuse
bun run build
run: bun run build
- name: Publish
run: |
cd packages/reffuse
npm publish --access public
run: bun run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -18,10 +18,6 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: |
cd packages/reffuse
bun run build
run: bun run build
- name: Pack
run: |
cd packages/reffuse
npm pack --dry-run
run: bun run pack