Skip to content

Commit 7d35ada

Browse files
committed
feat: add chores to changelog
This PR also: - Allows re-running of release integration step only - Uses composite actions for some often used and repeated inline actions
1 parent 7f86c5f commit 7d35ada

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2011
-3759
lines changed
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# This file is automatically added by @npmcli/template-oss. Do not edit.
2+
3+
name: 'Create Check'
4+
inputs:
5+
name:
6+
required: true
7+
token:
8+
required: true
9+
sha:
10+
required: true
11+
check-name:
12+
default: ''
13+
outputs:
14+
check-id:
15+
value: ${{ steps.create-check.outputs.check_id }}
16+
runs:
17+
using: "composite"
18+
steps:
19+
- name: Get Workflow Job
20+
uses: actions/github-script@v6
21+
id: workflow
22+
env:
23+
JOB_NAME: "${{ inputs.name }}"
24+
SHA: "${{ inputs.sha }}"
25+
with:
26+
result-encoding: string
27+
script: |
28+
const { repo: { owner, repo}, runId, serverUrl } = context
29+
const { JOB_NAME, SHA } = process.env
30+
31+
const job = await github.rest.actions.listJobsForWorkflowRun({
32+
owner,
33+
repo,
34+
run_id: runId,
35+
per_page: 100
36+
}).then(r => r.data.jobs.find(j => j.name.endsWith(JOB_NAME)))
37+
38+
return [
39+
`This check is assosciated with ${serverUrl}/${owner}/${repo}/commit/${SHA}.`,
40+
'Run logs:',
41+
job?.html_url || `could not be found for a job ending with: "${JOB_NAME}"`,
42+
].join(' ')
43+
- name: Create Check
44+
uses: LouisBrunner/[email protected]
45+
id: create-check
46+
with:
47+
token: ${{ inputs.token }}
48+
sha: ${{ inputs.sha }}
49+
status: in_progress
50+
name: ${{ inputs.check-name || inputs.name }}
51+
output: |
52+
{"summary":"${{ steps.workflow.outputs.result }}"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# This file is automatically added by @npmcli/template-oss. Do not edit.
2+
3+
name: 'Install Latest npm'
4+
description: 'Install the latest version of npm compatible with the Node version'
5+
inputs:
6+
node:
7+
description: 'Current Node version'
8+
required: true
9+
runs:
10+
using: "composite"
11+
steps:
12+
# node 10/12/14 ship with npm@6, which is known to fail when updating itself in windows
13+
- name: Update Windows npm
14+
if: |
15+
runner.os == 'Windows' && (
16+
startsWith(inputs.node, 'v10.') ||
17+
startsWith(inputs.node, 'v12.') ||
18+
startsWith(inputs.node, 'v14.')
19+
)
20+
shell: cmd
21+
run: |
22+
curl -sO https://registry.npmjs.org/npm/-/npm-7.5.4.tgz
23+
tar xf npm-7.5.4.tgz
24+
cd package
25+
node lib/npm.js install --no-fund --no-audit -g ..\npm-7.5.4.tgz
26+
cd ..
27+
rmdir /s /q package
28+
- name: Install Latest npm
29+
shell: bash
30+
env:
31+
NODE_VERSION: ${{ inputs.node }}
32+
run: |
33+
MATCH=""
34+
SPECS=("latest" "next-10" "next-9" "next-8" "next-7" "next-6")
35+
36+
echo "node@$NODE_VERSION"
37+
38+
for SPEC in ${SPECS[@]}; do
39+
ENGINES=$(npm view npm@$SPEC --json | jq -r '.engines.node')
40+
echo "Checking if node@$NODE_VERSION satisfies npm@$SPEC ($ENGINES)"
41+
42+
if npx semver -r "$ENGINES" "$NODE_VERSION" > /dev/null; then
43+
MATCH=$SPEC
44+
echo "Found compatible version: npm@$MATCH"
45+
break
46+
fi
47+
done
48+
49+
if [ -z $MATCH ]; then
50+
echo "Could not find a compatible version of npm for node@$NODE_VERSION"
51+
exit 1
52+
fi
53+
54+
npm i --prefer-online --no-fund --no-audit -g npm@$MATCH
55+
- name: npm Version
56+
shell: bash
57+
run: npm -v

.github/workflows/audit.yml

+3-30
Original file line numberDiff line numberDiff line change
@@ -29,37 +29,10 @@ jobs:
2929
with:
3030
node-version: 20.x
3131
check-latest: contains('20.x', '.x')
32-
3332
- name: Install Latest npm
34-
shell: bash
35-
env:
36-
NODE_VERSION: ${{ steps.node.outputs.node-version }}
37-
run: |
38-
MATCH=""
39-
SPECS=("latest" "next-10" "next-9" "next-8" "next-7" "next-6")
40-
41-
echo "node@$NODE_VERSION"
42-
43-
for SPEC in ${SPECS[@]}; do
44-
ENGINES=$(npm view npm@$SPEC --json | jq -r '.engines.node')
45-
echo "Checking if node@$NODE_VERSION satisfies npm@$SPEC ($ENGINES)"
46-
47-
if npx semver -r "$ENGINES" "$NODE_VERSION" > /dev/null; then
48-
MATCH=$SPEC
49-
echo "Found compatible version: npm@$MATCH"
50-
break
51-
fi
52-
done
53-
54-
if [ -z $MATCH ]; then
55-
echo "Could not find a compatible version of npm for node@$NODE_VERSION"
56-
exit 1
57-
fi
58-
59-
npm i --prefer-online --no-fund --no-audit -g npm@$MATCH
60-
61-
- name: npm Version
62-
run: npm -v
33+
uses: ./.github/actions/install-latest-npm
34+
with:
35+
node: ${{ steps.node.outputs.node-version }}
6336
- name: Install Dependencies
6437
run: npm i --ignore-scripts --no-audit --no-fund --package-lock
6538
- name: Run Production Audit

0 commit comments

Comments
 (0)