public_notes/.github/workflows/ci.yaml

72 lines
1.7 KiB
YAML
Raw Normal View History

2023-07-23 09:27:41 +09:00
name: Build and Test
2021-07-19 00:54:00 +09:00
on:
2023-08-25 04:31:15 +09:00
pull_request:
branches:
- v4
2021-07-19 00:54:00 +09:00
push:
branches:
2023-08-21 06:34:00 +09:00
- v4
2021-07-19 00:54:00 +09:00
jobs:
2023-07-20 14:00:44 +09:00
build-and-test:
2023-08-07 11:52:30 +09:00
if: ${{ github.repository == 'jackyzha0/quartz' }}
2023-08-03 12:56:31 +09:00
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
2023-05-29 09:44:08 +09:00
permissions:
contents: write
2021-07-19 00:54:00 +09:00
steps:
2023-05-29 09:44:08 +09:00
- uses: actions/checkout@v3
2022-05-03 14:51:15 +09:00
with:
2023-05-29 09:44:08 +09:00
fetch-depth: 0
2021-07-19 00:54:00 +09:00
2023-05-29 09:44:08 +09:00
- name: Setup Node
uses: actions/setup-node@v3
2021-07-19 00:54:00 +09:00
with:
2023-06-08 02:52:53 +09:00
node-version: 18
2021-07-19 00:54:00 +09:00
2023-05-29 09:44:08 +09:00
- name: Cache dependencies
uses: actions/cache@v3
2021-07-19 00:54:00 +09:00
with:
2023-05-29 09:44:08 +09:00
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
2021-07-19 00:54:00 +09:00
2023-05-29 09:44:08 +09:00
- run: npm ci
2023-07-23 09:42:13 +09:00
2023-07-23 09:39:10 +09:00
- name: Check types and style
2023-07-23 09:42:13 +09:00
run: npm run check
2023-05-29 09:44:08 +09:00
2023-07-13 16:19:35 +09:00
- name: Test
run: npm test
2021-07-19 00:54:00 +09:00
2023-09-11 15:07:17 +09:00
- name: Ensure Quartz builds, check bundle info
run: npx quartz build --bundleInfo
2023-11-02 02:03:45 +09:00
2024-02-24 12:04:38 +09:00
publish-tag:
2024-06-18 13:45:58 +09:00
if: ${{ github.repository == 'jackyzha0/quartz' && github.ref == 'refs/heads/v4' }}
2024-02-24 12:05:26 +09:00
runs-on: ubuntu-latest
2024-02-24 12:04:38 +09:00
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
2024-02-24 12:00:47 +09:00
- name: Get package version
run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
2023-11-02 02:03:45 +09:00
- name: Create release tag
2024-02-24 12:00:47 +09:00
uses: pkgdeps/git-tag-action@v2
2023-11-02 02:03:45 +09:00
with:
2024-02-24 12:00:47 +09:00
github_token: ${{ secrets.GITHUB_TOKEN }}
github_repo: ${{ github.repository }}
version: ${{ env.PACKAGE_VERSION }}
git_commit_sha: ${{ github.sha }}
git_tag_prefix: "v"