-
Notifications
You must be signed in to change notification settings - Fork 15
109 lines (93 loc) · 3.72 KB
/
nx-migrate.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
name: Nx migrate
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
nx-migrate:
strategy:
matrix:
os: [ubuntu-latest]
node_version: ['20']
java: ['17']
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
# cache: 'npm'
- name: Install dependencies
run: npm i
- name: Check if @nx/workspace is outdated
id: nx-workspace-outdated
run: |
IS_OUTDATED=$(test ! -z "$(npm outdated @nx/workspace)" && echo true || echo false)
echo $IS_OUTDATED
echo "outdated=$IS_OUTDATED" >> $GITHUB_OUTPUT
- name: Update @nx/workspace
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
run: npx nx migrate latest
- name: Install dependencies
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
run: npm i
- name: Check if has migrations
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
id: nx-workspace-has-migrations
run: |
HAS_MIGRATIONS=$(test -f migrations.json && echo true || echo false)
echo $HAS_MIGRATIONS
echo "has_migrations=$HAS_MIGRATIONS" >> $GITHUB_OUTPUT
- name: Run @nx/workspace migrations
if: steps.nx-workspace-has-migrations.outputs.has_migrations == 'true'
run: npx nx migrate --run-migrations
- name: Setup Git
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Commit changes
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
run: |
LAST_VERSION=$(npm view @nx/workspace version)
git add .
[[ $(git status --porcelain) ]] && git commit -m "build: update nx to version ${LAST_VERSION}" || echo "nothing to commit"
- name: Remove migrations.json & commit
if: steps.nx-workspace-has-migrations.outputs.has_migrations == 'true'
run: |
git rm -f migrations.json
git commit -m "build: remove migrations.json"
- name: Setup Java
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: E2E tests
id: e2e
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
continue-on-error: true
run: npm run nx run-many -- --target=e2e -- --t="nx-maven spring-boot-parent-pom e2e"
env:
NX_VERBOSE_LOGGING: 'true'
GITHUB_ACTIONS: 'true'
- name: Push changes
if: steps.nx-workspace-outdated.outputs.outdated == 'true' && steps.e2e.outcome == 'success'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Create PR
if: steps.nx-workspace-outdated.outputs.outdated == 'true' && steps.e2e.outcome != 'success'
run: |
LAST_VERSION=$(npm view @nx/workspace version)
BRANCH="update-nx-${LAST_VERSION}-${{ github.run_id }}-${{ github.run_attempt }}"
git checkout -b ${BRANCH}
git push -f --set-upstream origin ${BRANCH}
gh pr view ${BRANCH} || gh pr create -t "build: update nx to version ${LAST_VERSION}" -b "Update nx to version ${LAST_VERSION}."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}