-
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (50 loc) · 1.49 KB
/
ci.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: CI
on:
push:
workflow_dispatch:
schedule:
- cron: 0 0 * * * # every day at midnight
env:
FORCE_COLOR: true
NODE_VERSION: 20
jobs:
setup:
name: Test & Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: ${{ env.NODE_VERSION }}
- name: Install Dependencies
run: pnpm install
- name: Generate GraphQL Types
run: pnpm generate
- name: Run Linter
run: pnpm lint
- name: Run Tests
run: pnpm coverage
- name: Commit new files
if: success() && github.ref == 'refs/heads/develop'
run: |
if [ -n "$(git status --porcelain)" ]; then
pnpm document
git config --global user.name "GitHub Actions"
git config --global user.email ${{ secrets.GH_EMAIL }}
git add .
git commit -m "feat: update graphql types [skip ci]"
git push origin HEAD:develop
fi
- name: Create Release
if: success() && github.ref == 'refs/heads/develop'
run: pnpm semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish Schema Changes
if: success() && github.ref == 'refs/heads/develop'
run: pnpm publish-schemas
env:
APOLLO_KEY: ${{ secrets.APOLLO_KEY }}