Skip to content

Commit

Permalink
fix(shipjs): bunx to jsr
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Mar 20, 2024
1 parent 4f4aa95 commit d324ab8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:

jobs:
ci:
name: 'CI'
runs-on: ubuntu-latest
steps:
- name: Check out repository πŸŽ‰
Expand All @@ -23,6 +24,8 @@ jobs:

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

- name: Install dependencies πŸš€
run: bun install
Expand All @@ -36,7 +39,7 @@ jobs:
git_email: github-actions[bot]@users.noreply.github.com
auto_fix: false
neutral_check_on_warning: true
stylelint: true
stylelint: false
stylelint_extensions: css,scss,vue
eslint: true
eslint_extensions: js,ts,vue
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: 'CodeQL'

on:
push:
branches: [main]
branches:
- main
pull_request:
branches: [main]
branches:
- main
schedule:
- cron: '45 23 * * 2'

Expand Down
18 changes: 16 additions & 2 deletions .github/workflows/shipjs-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:
- name: Setup bun env 🐰
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.25+a8ff7be64

- name: Install dependencies πŸš€
run: bun install --frozen-lockfile
run: bun install

- name: Trigger a release (NPM) πŸ₯³
run: bunx shipjs trigger
Expand All @@ -48,5 +50,17 @@ jobs:
with:
fetch-depth: 0
ref: main

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

- name: Install dependencies πŸš€
run: bun install

- name: Build the package πŸŽ‰
run: bun run build

- name: Trigger a release (JSR) πŸ₯³
run: npx jsr publish
run: bunx jsr publish

0 comments on commit d324ab8

Please sign in to comment.