2023-07-22 17:27:41 -07:00
|
|
|
name: Build and Test
|
2021-07-18 11:54:00 -04:00
|
|
|
|
|
|
|
on:
|
2023-08-24 12:31:15 -07:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- v4
|
2021-07-18 11:54:00 -04:00
|
|
|
push:
|
|
|
|
branches:
|
2023-08-20 14:34:00 -07:00
|
|
|
- v4
|
2023-08-21 20:10:52 +09:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
2021-07-18 11:54:00 -04:00
|
|
|
|
|
|
|
jobs:
|
2023-07-19 22:00:44 -07:00
|
|
|
build-and-test:
|
2023-08-06 19:52:30 -07:00
|
|
|
if: ${{ github.repository == 'jackyzha0/quartz' }}
|
2023-08-02 20:56:31 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [windows-latest, macos-latest, ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-05-28 17:44:08 -07:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2021-07-18 11:54:00 -04:00
|
|
|
steps:
|
2024-07-01 00:05:42 -04:00
|
|
|
- uses: actions/checkout@v4
|
2022-05-03 01:51:15 -04:00
|
|
|
with:
|
2023-05-28 17:44:08 -07:00
|
|
|
fetch-depth: 0
|
2021-07-18 11:54:00 -04:00
|
|
|
|
2023-05-28 17:44:08 -07:00
|
|
|
- name: Setup Node
|
2024-07-01 00:05:42 -04:00
|
|
|
uses: actions/setup-node@v4
|
2021-07-18 11:54:00 -04:00
|
|
|
with:
|
2024-08-05 18:43:05 -07:00
|
|
|
node-version: 20
|
2021-07-18 11:54:00 -04:00
|
|
|
|
2023-05-28 17:44:08 -07:00
|
|
|
- name: Cache dependencies
|
2024-07-01 00:05:42 -04:00
|
|
|
uses: actions/cache@v4
|
2021-07-18 11:54:00 -04:00
|
|
|
with:
|
2023-05-28 17:44:08 -07:00
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-node-
|
2021-07-18 11:54:00 -04:00
|
|
|
|
2023-05-28 17:44:08 -07:00
|
|
|
- run: npm ci
|
2023-07-22 17:42:13 -07:00
|
|
|
|
2023-07-22 17:39:10 -07:00
|
|
|
- name: Check types and style
|
2023-07-22 17:42:13 -07:00
|
|
|
run: npm run check
|
2023-05-28 17:44:08 -07:00
|
|
|
|
2023-07-13 00:19:35 -07:00
|
|
|
- name: Test
|
|
|
|
run: npm test
|
2021-07-18 11:54:00 -04:00
|
|
|
|
2023-07-13 00:19:35 -07:00
|
|
|
- name: Ensure Quartz builds
|
2023-07-22 17:27:41 -07:00
|
|
|
run: npx quartz build
|
2023-08-21 20:10:52 +09:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# needs: build-and-test
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "pages"
|
|
|
|
cancel-in-progress: false
|
|
|
|
steps:
|
|
|
|
- run: git config --global core.quotepath false
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: setup Pages
|
|
|
|
id: pages
|
|
|
|
uses: actions/configure-pages@v3
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-node-
|
|
|
|
- run: npm i
|
|
|
|
- run: npx quartz build
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v2
|
|
|
|
with:
|
|
|
|
path: ./public
|
|
|
|
deploy:
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url}}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
steps:
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v2
|