fix(actions): dont add bun version latest
This commit is contained in:
@@ -7,17 +7,15 @@ concurrency:
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'main'
|
- "main"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: "Build"
|
name: "Build"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Bun
|
- name: Set up Bun
|
||||||
uses: https://github.com/oven-sh/setup-bun@v2
|
uses: https://github.com/oven-sh/setup-bun@v2
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
@@ -11,10 +11,8 @@ jobs:
|
|||||||
name: 'ESLint'
|
name: 'ESLint'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Bun
|
- name: Set up Bun
|
||||||
uses: https://github.com/oven-sh/setup-bun@v2
|
uses: https://github.com/oven-sh/setup-bun@v2
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -28,10 +26,8 @@ jobs:
|
|||||||
name: 'Oxlint'
|
name: 'Oxlint'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Bun
|
- name: Set up Bun
|
||||||
uses: https://github.com/oven-sh/setup-bun@v2
|
uses: https://github.com/oven-sh/setup-bun@v2
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -45,10 +41,8 @@ jobs:
|
|||||||
name: Type Check
|
name: Type Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Bun
|
- name: Set up Bun
|
||||||
uses: https://github.com/oven-sh/setup-bun@v2
|
uses: https://github.com/oven-sh/setup-bun@v2
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ node_modules: bun.lock
|
|||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: npm-install ## install project
|
install: npm-install ## install project
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: update
|
||||||
install: npm-update ## update project
|
update: npm-update ## update project
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: npm-run-build ## build static site in "dist"
|
build: npm-run-build ## build static site in "dist"
|
||||||
|
|||||||
Reference in New Issue
Block a user