-
-
Notifications
You must be signed in to change notification settings - Fork 15
124 lines (109 loc) · 3.91 KB
/
is-next-compat.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
119
120
121
122
123
124
name: is-next-compat
# ! If you want to use this workflow, the following secrets must be defined:
# ! - MONGODB_URI
# ! - GH_TOKEN
on:
workflow_dispatch: # * Treated like a scheduled run
schedule:
- cron: '0 */6 * * *'
env:
# * Selectively enable debugger verbose output in the pipeline
# ? See also: https://www.npmjs.com/package/debug#wildcards
# DEBUG: 'next-test-api-route-handler:*'
NODE_CURRENT_VERSION: '>=22.5.1'
NODE_OLDER_VERSIONS: '"18.x", "20.x"'
jobs:
metadata:
name: 'gather-metadata'
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
node-matrix: ${{ steps.set-matrix.outputs.node-matrix }}
steps:
- name: Report mode statuses
run: |
if [ -n "$DEBUG" ]; then
echo "IS-NEXT-COMPAT IS RUNNING IN DEBUG MODE ($DEBUG)"
else
echo '(is-next-compat is not running in debug mode)'
fi
- name: Gather metadata
id: set-matrix
run: |
echo "node-matrix={\"node\":[$NODE_OLDER_VERSIONS, \"$NODE_CURRENT_VERSION\"]}" >> $GITHUB_OUTPUT
! [ -z "$DEBUG" ] && echo "set-output name=node-matrix::{\"node\":[$NODE_OLDER_VERSIONS, \"$NODE_CURRENT_VERSION\"]}" || true
check-compat:
runs-on: ubuntu-latest
needs: metadata
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.metadata.outputs.node-matrix) }}
steps:
# GitHub Actions artifacts cannot handle filenames with certain characters
- name: Reify metadata
id: reified-metadata
env:
NODE_VERSION: ${{ matrix.node }}
run: >
node -p
'`node-version-sanitized=${process.env.NODE_VERSION.replaceAll(
/[":<>|*?\\\/=,\s'"'"']/g,"-")}`' >> "$GITHUB_OUTPUT"
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
# See: https://github.com/actions/setup-node/issues/214#issuecomment-810829250
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use node ${{ matrix.node }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- name: Cache npm
uses: actions/cache@v4
id: cache-npm
with:
key:
npm-node-${{ matrix.node }}-${{ runner.os }}-${{
hashFiles('**/package-lock.json') }}
path: ~/.npm
restore-keys: npm-node-${{ matrix.node }}-${{ runner.os }}-
# Turns out tee eats exit codes... ... sigh
# Also, we use npm install over npm ci for more accurate test results
- name: Install CI dependencies
run: |
mkfifo '#pipe.ignore'
tee --append /tmp/output.txt < '#pipe.ignore' &
npm install --force > '#pipe.ignore' 2>&1
rm '#pipe.ignore'
- name: Build distributables
run: |
mkfifo '#pipe.ignore'
tee --append /tmp/output.txt < '#pipe.ignore' &
npm run build:dist > '#pipe.ignore' 2>&1
rm '#pipe.ignore'
- name: Build externals
run: npm run build:externals
- name: Run is-next-compat
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
MONGODB_URI: ${{ secrets.MONGODB_URI }}
NODE_TARGET_VERSION: ${{ env.NODE_CURRENT_VERSION }}
run: |
mkfifo '#pipe.ignore'
tee --append /tmp/output.txt < '#pipe.ignore' &
node --no-warnings external-scripts/bin/is-next-compat.js > '#pipe.ignore' 2>&1
rm '#pipe.ignore'
- name: Upload output artifact
if: always()
uses: actions/upload-artifact@v4
with:
name:
output-node-${{
steps.reified-metadata.outputs.node-version-sanitized }}-${{
github.sha }}
path: /tmp/output.txt
if-no-files-found: error
retention-days: 1