CI - libnpmaccess #90
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 is automatically added by @npmcli/template-oss. Do not edit. | |
name: CI - libnpmaccess | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- workspaces/libnpmaccess/** | |
push: | |
branches: | |
- main | |
- latest | |
paths: | |
- workspaces/libnpmaccess/** | |
schedule: | |
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1 | |
- cron: "0 9 * * 1" | |
jobs: | |
engines: | |
name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }} | |
if: github.repository_owner == 'npm' | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: Linux | |
os: ubuntu-latest | |
shell: bash | |
node-version: | |
- 14.17.0 | |
- 16.13.0 | |
- 18.0.0 | |
runs-on: ${{ matrix.platform.os }} | |
defaults: | |
run: | |
shell: ${{ matrix.platform.shell }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Git User | |
run: | | |
git config --global user.email "npm-cli+bot@github.com" | |
git config --global user.name "npm CLI robot" | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Reset Deps | |
run: node . run resetdeps -- --engines-strict | |
lint: | |
name: Lint | |
if: github.repository_owner == 'npm' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Git User | |
run: | | |
git config --global user.email "npm-cli+bot@github.com" | |
git config --global user.name "npm CLI robot" | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: npm | |
- name: Reset Deps | |
run: node . run resetdeps | |
- name: Lint | |
run: node . run lint --ignore-scripts -w libnpmaccess | |
- name: Post Lint | |
run: node . run postlint --ignore-scripts -w libnpmaccess | |
test: | |
name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }} | |
if: github.repository_owner == 'npm' | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- name: Linux | |
os: ubuntu-latest | |
shell: bash | |
- name: macOS | |
os: macos-latest | |
shell: bash | |
- name: Windows | |
os: windows-latest | |
shell: cmd | |
node-version: | |
- 14.17.0 | |
- 14.x | |
- 16.13.0 | |
- 16.x | |
- 18.0.0 | |
- 18.x | |
runs-on: ${{ matrix.platform.os }} | |
defaults: | |
run: | |
shell: ${{ matrix.platform.shell }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Git User | |
run: | | |
git config --global user.email "npm-cli+bot@github.com" | |
git config --global user.name "npm CLI robot" | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Reset Deps | |
run: node . run resetdeps | |
- name: Link | |
if: matrix | |
run: node . link -f --ignore-scripts | |
- name: Rebuild cmark-gfm | |
run: node . rebuild cmark-gfm | |
- name: Add Problem Matcher | |
run: echo "::add-matcher::.github/matchers/tap.json" | |
- name: Test | |
run: node . test --ignore-scripts -w libnpmaccess | |
- name: Check Git Status | |
if: matrix && matrix.platform.os != 'windows-latest' | |
run: node scripts/git-dirty.js |