-
Notifications
You must be signed in to change notification settings - Fork 3
73 lines (72 loc) · 2.39 KB
/
ci-cd.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
64
65
66
67
68
69
70
71
72
73
name: CI/CD
on: [push]
jobs:
# --- Package testing ✅
test:
name: Continuous Integration
if: contains(github.event.head_commit.message, 'skip ci') == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22.12'
cache: 'pnpm'
- name: Code Climate - Setup
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Install
run: pnpm install
- name: Test
run: pnpm run test
- name: Code Climate - Report
if: success()
run: |
export GIT_BRANCH="${GIT_BRANCH:-${GITHUB_REF:11}}"
./cc-test-reporter after-build
env:
# Add required git env values for code cov reporting, ref:
# https://docs.codeclimate.com/docs/github-actions-test-coverage
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GIT_BRANCH: ${{ github.head_ref }}
- name: Codecov report
if: success()
uses: codecov/codecov-action@v3
# --- Chromatic publishing 📚
chromatic-deployment:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, 'skip ci') == false
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Git history required for comparing snapshots
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22.12'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Compile PostCSS plugin
run: pnpm run compile:commonjs
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
# Project is linked to GH and Chromatic checks will update after upload so we
# don't need to wait for build results in this action
exitOnceUploaded: true
skip: '@(renovate/**|dependabot/**)'
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}