Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci-libnpmversion.yml « workflows « .github - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b0c0fcf780a9225053d640f77f7fc140093f1ed (plain)
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
name: Node Workspace CI libnpmversion

on:
  pull_request:
    paths:
      - workspaces/libnpmversion/**
  push:
    paths:
      - workspaces/libnpmversion/**
    branches:
      - release-next
      - latest
  workflow_dispatch:

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      # Checkout the npm/cli repo
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: '16'
      - run: npm i --prefer-online -g npm@latest
      - run: npm i
      - run: npm run lint -w workspaces/libnpmversion

  test:
    strategy:
      fail-fast: false
      matrix:
        node-version: [12.13.0, 12.x, 14.15.0, 14.x, 16.13.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@v2
      - uses: actions/setup-node@v2
        with:
          node-version: ${{ matrix.node-version }}
        # node 12 and 14 ship with npm@6, which is known to fail when updating itself in windows
      - name: Update to workable npm (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
        run: npm i --prefer-online --no-fund --no-audit -g npm@latest
      - run: npm -v
      - run: npm i
      - run: npm test --ignore-scripts -w workspaces/libnpmversion