mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-04-04 10:40:40 +08:00
upd
This commit is contained in:
parent
642432120d
commit
a9581694c4
42
.github/workflows/format-and-build.yml
vendored
Normal file
42
.github/workflows/format-and-build.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
name: 🔄 Format & Build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
format:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 📥 Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: 🛠️ Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.x
|
||||
|
||||
- name: 🔧 Configure Git
|
||||
run: |
|
||||
git config user.name 'github-actions[bot]'
|
||||
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
|
||||
- name: 📦 Install Dependencies
|
||||
run: npm install
|
||||
|
||||
- name: 🔄 Format and build
|
||||
run: |
|
||||
npm run format
|
||||
npm run build
|
||||
|
||||
- name: 💾 Commit changes
|
||||
run: |
|
||||
git add .
|
||||
git commit -m "chore: format and build"
|
||||
git push
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@ -29,9 +29,6 @@ jobs:
|
||||
- name: 📦 Install Dependencies
|
||||
run: npm install
|
||||
|
||||
- name: 🚀 Prepare release
|
||||
run: bun run preversion
|
||||
|
||||
- name: 📜 Generate changelog and release new version
|
||||
run: |
|
||||
npx changelogen --release --push
|
||||
|
@ -19,7 +19,6 @@
|
||||
"scripts": {
|
||||
"format": "prettier --write src *.yml *.json *.md",
|
||||
"build": "esbuild --target=node20 --outfile=dist/setup/index.js --bundle --minify --platform=node --format=cjs src/index.ts && esbuild --target=node20 --outfile=dist/cache-save/index.js --bundle --minify --platform=node --format=cjs src/cache-save.ts",
|
||||
"preversion": "npm run format && npm run build && git add .",
|
||||
"start": "npm run build && node dist/setup/index.js"
|
||||
},
|
||||
"dependencies": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user