-
Notifications
You must be signed in to change notification settings - Fork 304
63 lines (52 loc) · 1.44 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Check
permissions:
contents: read
pull-requests: read
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
check:
name: Check
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: ./.github/actions/setup-pnpm
- name: Check
run: pnpm check-ci
- name: Test
run: pnpm test
- name: Build
run: |
pnpm build
pnpm build --browser firefox
pnpm build --browser safari
env:
DROPBOX_API_KEY: ${{ secrets.DROPBOX_API_KEY }}
DROPBOX_API_SECRET: ${{ secrets.DROPBOX_API_SECRET }}
GOOGLE_DRIVE_API_KEY: ${{ secrets.GOOGLE_DRIVE_API_KEY }}
GOOGLE_DRIVE_API_SECRET: ${{ secrets.GOOGLE_DRIVE_API_SECRET }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
- name: "[Website] Get changed files"
id: website-changed-files
uses: tj-actions/changed-files@v45
with:
files: website/**
- name: "[Website] Check"
if: steps.website-changed-files.outputs.any_changed == 'true'
run: pnpm check
working-directory: website
- name: "[Website] Build"
if: steps.website-changed-files.outputs.any_changed == 'true'
run: pnpm build
working-directory: website