npm update

This commit is contained in:
Miguel Pimentel 2024-07-01 18:30:29 +00:00 committed by GitHub
parent e22f41bdea
commit cafebae307
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 834 additions and 912 deletions

View File

@ -3,9 +3,6 @@ name: Quartz - Build only
on:
workflow_dispatch:
pull_request:
# push:
# branches:
# - main
permissions:
contents: read
@ -20,10 +17,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for git info
- uses: actions/setup-node@v4
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies

56
.github/workflows/deploy-bun.yml vendored Normal file
View File

@ -0,0 +1,56 @@
name: Quartz - Deploy to GitHub Pages (bun)
on:
workflow_dispatch:
# push:
# branches:
# - main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# with:
# fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version: 18
- name: Install Dependencies
run: bun install
- name: Build Quartz
run: bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: public
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

1679
package-lock.json generated

File diff suppressed because it is too large Load Diff