-
-
Notifications
You must be signed in to change notification settings - Fork 403
79 lines (62 loc) · 1.93 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: On Push
on:
push:
branches: main
env:
CI: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
build-test-release:
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup node.js
uses: actions/setup-node@v4
with:
node-version: 20.11.0
- uses: pnpm/[email protected]
with:
run_install: false
- name: get pnpm store directory
id: pnpm-cache
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: load cache
uses: actions/cache@v4
with:
path: |
~/.cache/Cypress
${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- uses: nrwl/nx-set-shas@v4
- run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --require-explicit-completion
- name: install dependencies
run: pnpm install
# build all the packages to prepare for release
- name: build packs
run: pnpm build
- name: run lint
run: pnpm test:lint --format github
- name: run unit tests
run: pnpm test:unit
- name: run cypress
run: pnpm nx affected -t e2e-ci @milkdown/e2e
- run: npx nx-cloud complete-ci-run
if: always()
- name: create versions or publish to npm registry
uses: changesets/action@v1
with:
publish: pnpm release
commit: 'ci(changeset): release milkdown'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Upload test results
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: test-results-main
path: dist/cypress
if-no-files-found: ignore