A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/npm/cli/commit/8bc86b61ff556ec8e411a8c1214d59c6db81d7f7 below:

@npmcli/template-oss@4.7.1 · npm/cli@8bc86b6 · GitHub

Expand file treeCollapse file tree 80 files changed

+1471

-14642

lines changed Original file line number Diff line number Diff line change

@@ -29,6 +29,6 @@ jobs:

29 29

node-version: 16.x

30 30

cache: npm

31 31

- name: Reset Deps

32 -

run: node . run resetdeps

32 +

run: node . run resetdeps -- --package-lock

33 33

- name: Run Audit

34 -

run: node . audit

34 +

run: node . audit -iwr -w workspaces

Original file line number Diff line number Diff line change

@@ -18,6 +18,37 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 16.0.0

33 +

runs-on: ${{ matrix.platform.os }}

34 +

defaults:

35 +

run:

36 +

shell: ${{ matrix.platform.shell }}

37 +

steps:

38 +

- name: Checkout

39 +

uses: actions/checkout@v3

40 +

- name: Setup Git User

41 +

run: |

42 +

git config --global user.email "npm-cli+bot@github.com"

43 +

git config --global user.name "npm CLI robot"

44 +

- name: Setup Node

45 +

uses: actions/setup-node@v3

46 +

with:

47 +

node-version: ${{ matrix.node-version }}

48 +

cache: npm

49 +

- name: Reset Deps

50 +

run: node . run resetdeps -- --engines-strict

51 + 21 52

lint:

22 53

name: Lint

23 54

if: github.repository_owner == 'npm'

@@ -40,9 +71,9 @@ jobs:

40 71

- name: Reset Deps

41 72

run: node . run resetdeps

42 73

- name: Lint

43 -

run: node . run lint --ignore-scripts

74 +

run: node . run lint --ignore-scripts -w docs

44 75

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

76 +

run: node . run postlint --ignore-scripts -w docs

46 77 47 78

test:

48 79

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -84,3 +115,6 @@ jobs:

84 115

run: echo "::add-matcher::.github/matchers/tap.json"

85 116

- name: Test

86 117

run: node . test --ignore-scripts -w docs

118 +

- name: Check Git Status

119 +

if: matrix && matrix.platform.os != 'windows-latest'

120 +

run: node scripts/git-dirty.js

Original file line number Diff line number Diff line change

@@ -18,6 +18,39 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 12.13.0

33 +

- 14.15.0

34 +

- 16.0.0

35 +

runs-on: ${{ matrix.platform.os }}

36 +

defaults:

37 +

run:

38 +

shell: ${{ matrix.platform.shell }}

39 +

steps:

40 +

- name: Checkout

41 +

uses: actions/checkout@v3

42 +

- name: Setup Git User

43 +

run: |

44 +

git config --global user.email "npm-cli+bot@github.com"

45 +

git config --global user.name "npm CLI robot"

46 +

- name: Setup Node

47 +

uses: actions/setup-node@v3

48 +

with:

49 +

node-version: ${{ matrix.node-version }}

50 +

cache: npm

51 +

- name: Reset Deps

52 +

run: node . run resetdeps -- --engines-strict

53 + 21 54

lint:

22 55

name: Lint

23 56

if: github.repository_owner == 'npm'

@@ -40,9 +73,9 @@ jobs:

40 73

- name: Reset Deps

41 74

run: node . run resetdeps

42 75

- name: Lint

43 -

run: node . run lint --ignore-scripts

76 +

run: node . run lint --ignore-scripts -w libnpmaccess

44 77

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

78 +

run: node . run postlint --ignore-scripts -w libnpmaccess

46 79 47 80

test:

48 81

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -89,3 +122,6 @@ jobs:

89 122

run: echo "::add-matcher::.github/matchers/tap.json"

90 123

- name: Test

91 124

run: node . test --ignore-scripts -w libnpmaccess

125 +

- name: Check Git Status

126 +

if: matrix && matrix.platform.os != 'windows-latest'

127 +

run: node scripts/git-dirty.js

Original file line number Diff line number Diff line change

@@ -18,6 +18,39 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 12.13.0

33 +

- 14.15.0

34 +

- 16.0.0

35 +

runs-on: ${{ matrix.platform.os }}

36 +

defaults:

37 +

run:

38 +

shell: ${{ matrix.platform.shell }}

39 +

steps:

40 +

- name: Checkout

41 +

uses: actions/checkout@v3

42 +

- name: Setup Git User

43 +

run: |

44 +

git config --global user.email "npm-cli+bot@github.com"

45 +

git config --global user.name "npm CLI robot"

46 +

- name: Setup Node

47 +

uses: actions/setup-node@v3

48 +

with:

49 +

node-version: ${{ matrix.node-version }}

50 +

cache: npm

51 +

- name: Reset Deps

52 +

run: node . run resetdeps -- --engines-strict

53 + 21 54

lint:

22 55

name: Lint

23 56

if: github.repository_owner == 'npm'

@@ -40,9 +73,9 @@ jobs:

40 73

- name: Reset Deps

41 74

run: node . run resetdeps

42 75

- name: Lint

43 -

run: node . run lint --ignore-scripts

76 +

run: node . run lint --ignore-scripts -w libnpmdiff

44 77

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

78 +

run: node . run postlint --ignore-scripts -w libnpmdiff

46 79 47 80

test:

48 81

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -89,3 +122,6 @@ jobs:

89 122

run: echo "::add-matcher::.github/matchers/tap.json"

90 123

- name: Test

91 124

run: node . test --ignore-scripts -w libnpmdiff

125 +

- name: Check Git Status

126 +

if: matrix && matrix.platform.os != 'windows-latest'

127 +

run: node scripts/git-dirty.js

Original file line number Diff line number Diff line change

@@ -18,6 +18,39 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 12.13.0

33 +

- 14.15.0

34 +

- 16.0.0

35 +

runs-on: ${{ matrix.platform.os }}

36 +

defaults:

37 +

run:

38 +

shell: ${{ matrix.platform.shell }}

39 +

steps:

40 +

- name: Checkout

41 +

uses: actions/checkout@v3

42 +

- name: Setup Git User

43 +

run: |

44 +

git config --global user.email "npm-cli+bot@github.com"

45 +

git config --global user.name "npm CLI robot"

46 +

- name: Setup Node

47 +

uses: actions/setup-node@v3

48 +

with:

49 +

node-version: ${{ matrix.node-version }}

50 +

cache: npm

51 +

- name: Reset Deps

52 +

run: node . run resetdeps -- --engines-strict

53 + 21 54

lint:

22 55

name: Lint

23 56

if: github.repository_owner == 'npm'

@@ -40,9 +73,9 @@ jobs:

40 73

- name: Reset Deps

41 74

run: node . run resetdeps

42 75

- name: Lint

43 -

run: node . run lint --ignore-scripts

76 +

run: node . run lint --ignore-scripts -w libnpmexec

44 77

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

78 +

run: node . run postlint --ignore-scripts -w libnpmexec

46 79 47 80

test:

48 81

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -89,3 +122,6 @@ jobs:

89 122

run: echo "::add-matcher::.github/matchers/tap.json"

90 123

- name: Test

91 124

run: node . test --ignore-scripts -w libnpmexec

125 +

- name: Check Git Status

126 +

if: matrix && matrix.platform.os != 'windows-latest'

127 +

run: node scripts/git-dirty.js

Original file line number Diff line number Diff line change

@@ -18,6 +18,39 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 12.13.0

33 +

- 14.15.0

34 +

- 16.0.0

35 +

runs-on: ${{ matrix.platform.os }}

36 +

defaults:

37 +

run:

38 +

shell: ${{ matrix.platform.shell }}

39 +

steps:

40 +

- name: Checkout

41 +

uses: actions/checkout@v3

42 +

- name: Setup Git User

43 +

run: |

44 +

git config --global user.email "npm-cli+bot@github.com"

45 +

git config --global user.name "npm CLI robot"

46 +

- name: Setup Node

47 +

uses: actions/setup-node@v3

48 +

with:

49 +

node-version: ${{ matrix.node-version }}

50 +

cache: npm

51 +

- name: Reset Deps

52 +

run: node . run resetdeps -- --engines-strict

53 + 21 54

lint:

22 55

name: Lint

23 56

if: github.repository_owner == 'npm'

@@ -40,9 +73,9 @@ jobs:

40 73

- name: Reset Deps

41 74

run: node . run resetdeps

42 75

- name: Lint

43 -

run: node . run lint --ignore-scripts

76 +

run: node . run lint --ignore-scripts -w libnpmfund

44 77

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

78 +

run: node . run postlint --ignore-scripts -w libnpmfund

46 79 47 80

test:

48 81

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -89,3 +122,6 @@ jobs:

89 122

run: echo "::add-matcher::.github/matchers/tap.json"

90 123

- name: Test

91 124

run: node . test --ignore-scripts -w libnpmfund

125 +

- name: Check Git Status

126 +

if: matrix && matrix.platform.os != 'windows-latest'

127 +

run: node scripts/git-dirty.js

Original file line number Diff line number Diff line change

@@ -18,6 +18,39 @@ on:

18 18

- cron: "0 9 * * 1"

19 19 20 20

jobs:

21 +

engines:

22 +

name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

23 +

if: github.repository_owner == 'npm'

24 +

strategy:

25 +

fail-fast: false

26 +

matrix:

27 +

platform:

28 +

- name: Linux

29 +

os: ubuntu-latest

30 +

shell: bash

31 +

node-version:

32 +

- 12.13.0

33 +

- 14.15.0

34 +

- 16.0.0

35 +

runs-on: ${{ matrix.platform.os }}

36 +

defaults:

37 +

run:

38 +

shell: ${{ matrix.platform.shell }}

39 +

steps:

40 +

- name: Checkout

41 +

uses: actions/checkout@v3

42 +

- name: Setup Git User

43 +

run: |

44 +

git config --global user.email "npm-cli+bot@github.com"

45 +

git config --global user.name "npm CLI robot"

46 +

- name: Setup Node

47 +

uses: actions/setup-node@v3

48 +

with:

49 +

node-version: ${{ matrix.node-version }}

50 +

cache: npm

51 +

- name: Reset Deps

52 +

run: node . run resetdeps -- --engines-strict

53 + 21 54

lint:

22 55

name: Lint

23 56

if: github.repository_owner == 'npm'

@@ -40,9 +73,9 @@ jobs:

40 73

- name: Reset Deps

41 74

run: node . run resetdeps

42 75

- name: Lint

43 -

run: node . run lint --ignore-scripts

76 +

run: node . run lint --ignore-scripts -w libnpmhook

44 77

- name: Post Lint

45 -

run: node . run postlint --ignore-scripts

78 +

run: node . run postlint --ignore-scripts -w libnpmhook

46 79 47 80

test:

48 81

name: Test - ${{ matrix.platform.name }} - ${{ matrix.node-version }}

@@ -89,3 +122,6 @@ jobs:

89 122

run: echo "::add-matcher::.github/matchers/tap.json"

90 123

- name: Test

91 124

run: node . test --ignore-scripts -w libnpmhook

125 +

- name: Check Git Status

126 +

if: matrix && matrix.platform.os != 'windows-latest'

127 +

run: node scripts/git-dirty.js

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4