diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b95b75e..472b841 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,4 +46,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 2bdb759..0d2f2f2 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -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/mirror-action@v0.5.1 - 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/mirror-action@v0.5.1 + with: + REMOTE: "https://codeberg.org/semantic/pages.git" + GIT_USERNAME: gxbs + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index bdc373c..d3529ad 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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