Skip to content

Commit

Permalink
cleanup(workflow): format
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Jun 13, 2024
1 parent 1d25f32 commit 87b6d2f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
22 changes: 11 additions & 11 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ name: Mirror to Codeberg

on:
push:
branches: ['main']
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: mirror-repository
uses: spyoungtech/[email protected]
with:
REMOTE: 'https://codeberg.org/semantic/pages.git'
GIT_USERNAME: gxbs
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: mirror-repository
uses: spyoungtech/[email protected]
with:
REMOTE: "https://codeberg.org/semantic/pages.git"
GIT_USERNAME: gxbs
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
34 changes: 17 additions & 17 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ jobs:
build:
name: Build and Test
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Set up PNPM
uses: pnpm/action-setup@v3
with:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: latest

- name: Set up PNPM
uses: pnpm/action-setup@v3
with:
version: latest

- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run docs:build
- name: Install dependencies
run: pnpm install

- name: Build project
run: pnpm run docs:build

0 comments on commit 87b6d2f

Please sign in to comment.