-
Notifications
You must be signed in to change notification settings - Fork 1
118 lines (113 loc) · 3.76 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
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
name: CI
concurrency:
group: 'ci'
on:
push:
branches: [main]
workflow_dispatch:
env:
CI: 'true'
permissions:
pull-requests: write
issues: write
statuses: write
checks: write
contents: write
actions: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/init-monorepo
- name: Build
run: pnpm nx run-many --target build --all --output-style=stream
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Check for mutations
run: git diff --ignore-space-at-eol --exit-code -- ':!**/LICENSE-THIRD-PARTY'
- name: Upload artifact
uses: actions/[email protected]
with:
name: build-artifact
path: dist
smoke_tests:
name: Smoke Tests - ${{matrix.package_manager}}
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
needs: build
strategy:
matrix:
package_manager: [npm, yarn, pnpm, bun]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifact
path: dist
- uses: ./.github/actions/init-monorepo
- name: Smoke Test - ${{ matrix.package_manager }}
run: pnpm nx run @aws/nx-plugin-e2e:test -t "smoke test - ${{ matrix.package_manager }}"
release:
name: Release
needs: [build, smoke_tests]
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
outputs:
latest_commit: ${{ steps.git_remote.outputs.latest_commit }}
skip_release: ${{ steps.should_skip_release.outputs.skip_release }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifact
path: dist
- uses: ./.github/actions/init-monorepo
- name: Check for new commits
id: git_remote
run: echo "latest_commit=$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" >> $GITHUB_OUTPUT
- name: Should skip release
id: should_skip_release
run: echo "skip_release=$(git log $(git describe --tags --abbrev=0)..HEAD --oneline | grep -qE 'feat\(?.*\)?:|fix\(?.*\)?:|revert\(?.*\)?:|perf\(?.*\)?:' && echo false || echo true)" >> $GITHUB_OUTPUT
- name: Release
if: ${{ steps.should_skip_release.outputs.skip_release != 'true' && github.event_name == 'push' && steps.git_remote.outputs.latest_commit == github.sha }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# NPM_CONFIG_PROVENANCE: true
NPM_DIST_TAG: latest
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HUSKY: '0'
run: |
pnpm nx release --yes
deploy_docs:
name: Deploy Docs
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && needs.release.outputs.latest_commit == github.sha }}
needs: [release]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifact
path: dist
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'dist/docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4