-
Notifications
You must be signed in to change notification settings - Fork 0
166 lines (140 loc) · 4.62 KB
/
ci.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# This is a Github Workflow that runs tests on any push or pull request.
# If the tests pass and this is a push to the master branch it also runs Semantic Release.
name: CI
on: [push, pull_request]
jobs:
push:
name: Push ${{ github.ref }}
if: github.event_name == 'push'
runs-on: ubuntu-24.04
permissions:
checks: read
statuses: write
contents: write
packages: write
id-token: write
steps:
- name: Fetch depth
run: echo "FETCH_DEPTH=$(echo '${{ toJSON(github.event.commits) }}' | jq 'length | if . < 20 then . + 1 else 0 end')" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: ${{ env.FETCH_DEPTH }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Setup Bun Runtime
uses: antongolub/action-setup-bun@v1
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Fetch deps
run: yarn --silent --immutable
- name: Build
run: |
yarn warmup
yarn build
env:
VERBOSE: true
- name: Coverage
run: yarn cov
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Codeclimate
if: github.ref == 'refs/heads/master'
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/lcov.info:lcov
- name: Semantic Release
if: github.ref == 'refs/heads/master'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_PROVENANCE: true
GH_USER: ${{ secrets.GH_USER }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
run: npm_config_yes=true npx zx-bulk-release --no-build
pr:
if: github.event_name == 'pull_request'
name: PR
runs-on: ubuntu-24.04
steps:
# https://github.com/actions/checkout/issues/552
- name: Fetch depth
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Setup Bun Runtime
uses: antongolub/action-setup-bun@v1
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Fetch deps
run: yarn --silent --immutable
- name: Build
run: |
yarn warmup
yarn build
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: target
path: |
package.json
packages/**/target/esm/**/*
packages/**/target/cjs/**/*
packages/**/target/dts/**/*
packages/**/target/coverage/lcov.info
pr-compat:
needs: pr
name: Compat test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
strategy:
matrix:
os: [ ubuntu-24.04, windows-latest ]
node-version: [ 18, 20 ]
runs-on: ${{ matrix.os }}
steps:
# https://github.com/actions/checkout/issues/552
- name: Fetch depth
run: |
echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $env:GITHUB_ENV
echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
# - name: Log
# run: node -e "console.log('commits=', process.env.COMMITS)"
# env:
# COMMITS: ${{ toJSON(github.event.pull_request.commits) }}
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: target
- name: Fetch deps
run: yarn --silent --immutable
- name: Integration test
run: yarn test --testCmd="yarn test:it"