-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add some basic tests for docs - make dockhand script work on windows - cleanup main CI to match template-oss - add a git status check for cli ci tests - use resetdeps for ci steps
- Loading branch information
1 parent
8b65bfd
commit a419ca7
Showing
39 changed files
with
305 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# This file is automatically added by @npmcli/template-oss. Do not edit. | ||
|
||
name: CI - docs | ||
|
||
on: | ||
|
@@ -22,26 +24,67 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup git user | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "npm cli ops bot" | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
- run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
node ./bin/npm-cli.js rebuild | ||
- run: node ./bin/npm-cli.js run lint -w docs | ||
env: | ||
DEPLOY_VERSION: testing | ||
- name: Update npm to latest | ||
run: npm i --prefer-online --no-fund --no-audit -g npm@latest | ||
- run: npm -v | ||
- run: npm i --ignore-scripts | ||
- run: npm run lint -w docs | ||
|
||
check_docs: | ||
runs-on: ubuntu-latest | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- 12.13.0 | ||
- 12.x | ||
- 14.15.0 | ||
- 14.x | ||
- 16.0.0 | ||
- 16.x | ||
platform: | ||
- os: ubuntu-latest | ||
shell: bash | ||
- os: macos-latest | ||
shell: bash | ||
- os: windows-latest | ||
shell: cmd | ||
runs-on: ${{ matrix.platform.os }} | ||
defaults: | ||
run: | ||
shell: ${{ matrix.platform.shell }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup git user | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "npm cli ops bot" | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
- run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
- name: Rebuild the docs | ||
run: make freshdocs | ||
- name: Git should not be dirty | ||
run: node scripts/git-dirty.js | ||
node-version: ${{ matrix.node-version }} | ||
- name: Update to workable npm (windows) | ||
# node 12 and 14 ship with npm@6, which is known to fail when updating itself in windows | ||
if: matrix.platform.os == 'windows-latest' && (startsWith(matrix.node-version, '12.') || startsWith(matrix.node-version, '14.')) | ||
run: | | ||
curl -sO https://registry.npmjs.org/npm/-/npm-7.5.4.tgz | ||
tar xf npm-7.5.4.tgz | ||
cd package | ||
node lib/npm.js install --no-fund --no-audit -g ..\npm-7.5.4.tgz | ||
cd .. | ||
rmdir /s /q package | ||
- name: Update npm to 7 | ||
# If we do test on npm 10 it needs npm7 | ||
if: startsWith(matrix.node-version, '10.') | ||
run: npm i --prefer-online --no-fund --no-audit -g npm@7 | ||
- name: Update npm to latest | ||
if: ${{ !startsWith(matrix.node-version, '10.') }} | ||
run: npm i --prefer-online --no-fund --no-audit -g npm@latest | ||
- run: npm -v | ||
- run: npm i --ignore-scripts | ||
- run: npm test --ignore-scripts -w docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,149 +1,115 @@ | ||
name: Node CI | ||
name: CI - cli | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- '*' | ||
push: | ||
branches: | ||
- latest | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout the npm/cli repo | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
uses: actions/setup-node@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
node-version: 16.x | ||
cache: npm | ||
- name: Install dependencies | ||
run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
node ./bin/npm-cli.js rebuild | ||
- name: Run linting | ||
run: node ./bin/npm-cli.js run posttest | ||
env: | ||
DEPLOY_VERSION: testing | ||
- run: node ./bin/npm-cli.js run resetdeps | ||
- run: node ./bin/npm-cli.js run lint | ||
|
||
check_docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
uses: actions/setup-node@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
node-version: 16.x | ||
cache: npm | ||
- name: Install dependencies | ||
run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
- name: Rebuild the docs | ||
run: make freshdocs | ||
- name: Git should not be dirty | ||
run: node scripts/git-dirty.js | ||
|
||
- run: node ./bin/npm-cli.js run resetdeps | ||
- run: make freshdocs | ||
- run: node scripts/git-dirty.js | ||
|
||
licenses: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout the npm/cli repo | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 14.x | ||
uses: actions/setup-node@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
node-version: 16.x | ||
cache: npm | ||
- name: Install dependencies | ||
run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
node ./bin/npm-cli.js rebuild | ||
- name: Validate licenses | ||
run: node ./bin/npm-cli.js run licenses | ||
- run: node ./bin/npm-cli.js run resetdeps | ||
- run: node ./bin/npm-cli.js run licenses | ||
|
||
smoke-tests: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [12.x, 14.x, 16.x] | ||
node-version: | ||
- 12.x | ||
- 14.x | ||
- 16.x | ||
platform: | ||
- os: ubuntu-latest | ||
shell: bash | ||
- os: macos-latest | ||
shell: bash | ||
- os: windows-latest | ||
shell: bash | ||
- os: windows-latest | ||
shell: powershell | ||
|
||
shell: cmd | ||
runs-on: ${{ matrix.platform.os }} | ||
defaults: | ||
run: | ||
shell: ${{ matrix.platform.shell }} | ||
|
||
steps: | ||
# Checkout the npm/cli repo | ||
- uses: actions/checkout@v2 | ||
|
||
# Installs the specific version of Node.js | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: npm | ||
|
||
# Run the installer script | ||
- name: Install dependencies | ||
run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
node ./bin/npm-cli.js rebuild | ||
# Run the smoke tests | ||
- name: Run Smoke tests | ||
run: node ./bin/npm-cli.js run --ignore-scripts smoke-tests -- --no-check-coverage -t600 -Rbase -c | ||
env: | ||
DEPLOY_VERSION: testing | ||
- run: node ./bin/npm-cli.js run resetdeps | ||
- run: node ./bin/npm-cli.js run smoke-tests --ignore-scripts | ||
- name: git status | ||
if: matrix.platform.os != 'windows-latest' | ||
run: node scripts/git-dirty.js | ||
|
||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: ['12.13.0', 12.x, '14.15.0', 14.x, '16.0.0', 16.x] | ||
node-version: | ||
- 12.13.0 | ||
- 12.x | ||
- 14.15.0 | ||
- 14.x | ||
- 16.0.0 | ||
- 16.x | ||
platform: | ||
- os: ubuntu-latest | ||
shell: bash | ||
- os: macos-latest | ||
shell: bash | ||
- os: windows-latest | ||
shell: bash | ||
- os: windows-latest | ||
shell: powershell | ||
|
||
shell: cmd | ||
runs-on: ${{ matrix.platform.os }} | ||
defaults: | ||
run: | ||
shell: ${{ matrix.platform.shell }} | ||
|
||
steps: | ||
# Checkout the npm/cli repo | ||
- uses: actions/checkout@v2 | ||
|
||
# Installs the specific version of Node.js | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: npm | ||
|
||
# Run the installer script | ||
- name: Install dependencies | ||
run: | | ||
node ./bin/npm-cli.js install --ignore-scripts --no-audit | ||
node ./bin/npm-cli.js rebuild | ||
# Run the tests | ||
- name: Run Tap tests | ||
run: node ./bin/npm-cli.js run test --ignore-scripts -- -t600 -Rbase -c | ||
- run: node ./bin/npm-cli.js run resetdeps | ||
- run: node ./bin/npm-cli.js run test --ignore-scripts | ||
- name: git status | ||
if: matrix.platform.os != 'windows-latest' | ||
run: node scripts/git-dirty.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.