๐Ÿ“ฆ airbnb / javascript

๐Ÿ“„ node.yml ยท 164 lines
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164name: 'Tests: node.js'

on: [pull_request, push]

jobs:
  matrix:
    runs-on: ubuntu-latest
    outputs:
      latest: ${{ steps.set-matrix.outputs.requireds }}
    steps:
      - uses: ljharb/actions/node/matrix@main
        id: set-matrix
        with:
          versionsAsRoot: true
          type: 'majors'
          preset: '^12 || ^14 || ^16 || >= 17'

  base:
    needs: [matrix]
    name: 'base config'
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
        eslint:
          - 8
          - 7
        package:
          - eslint-config-airbnb-base
        exclude:
          - node-version: 10
            eslint: 8
            package: eslint-config-airbnb-base

    defaults:
      run:
        working-directory: "packages/${{ matrix.package }}"

    steps:
      - uses: actions/checkout@v2
      - uses: ljharb/actions/node/install@main
        name: 'nvm install ${{ matrix.node-version }} && npm install'
        with:
          before_install: cd "packages/${{ matrix.package }}"
          node-version: ${{ matrix.node-version }}
          after_install: |
            npm install --no-save "eslint@${{ matrix.eslint }}"
      - run: node -pe "require('eslint/package.json').version"
        name: 'eslint version'
      - run: npm run travis
      - uses: codecov/codecov-action@v2

  react:
    needs: [matrix]
    name: 'react config'
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        node-version: ${{ fromJson(needs.matrix.outputs.latest) }}
        eslint:
          - 8
          - 7
        package:
          - eslint-config-airbnb
        react-hooks:
          - 4

    defaults:
      run:
        working-directory: "packages/${{ matrix.package }}"

    steps:
      - uses: actions/checkout@v2
      - uses: ljharb/actions/node/install@main
        name: 'nvm install ${{ matrix.node-version }} && npm install'
        with:
          before_install: cd "packages/${{ matrix.package }}"
          node-version: ${{ matrix.node-version }}
          after_install: |
            npm install --no-save "eslint@${{ matrix.eslint }}"
      - run: node -pe "require('eslint/package.json').version"
        name: 'eslint version'
      - run: npm install --no-save "eslint-plugin-react-hooks@${{ matrix.react-hooks }}"
        if: ${{ matrix.react-hooks > 0}}
      - run: npm run travis
      - uses: codecov/codecov-action@v2

  prepublish-base:
    name: 'prepublish tests (base config)'
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        eslint:
          - 8
          - 7
        package:
          - eslint-config-airbnb-base

    defaults:
      run:
        working-directory: "packages/${{ matrix.package }}"

    steps:
      - uses: actions/checkout@v2
      - uses: ljharb/actions/node/install@main
        name: 'nvm install lts/* && npm install'
        with:
          before_install: cd "packages/${{ matrix.package }}"
          node-version: lts/*
          after_install: |
            npm install --no-save "eslint@${{ matrix.eslint }}"
      - run: node -pe "require('eslint/package.json').version"
        name: 'eslint version'
      - run: npm run pretravis
      - run: npm run prepublishOnly
      - run: npm run posttravis

  prepublish-react:
    name: 'prepublish tests (react config)'
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        eslint:
          - 8
          - 7
        package:
          - eslint-config-airbnb
        react-hooks:
          - 4

    defaults:
      run:
        working-directory: "packages/${{ matrix.package }}"

    steps:
      - uses: actions/checkout@v2
      - uses: ljharb/actions/node/install@main
        name: 'nvm install lts/* && npm install'
        with:
          before_install: cd "packages/${{ matrix.package }}"
          node-version: lts/*
          after_install: |
            npm install --no-save "eslint@${{ matrix.eslint }}"
      - run: npm install --no-save "eslint-plugin-react-hooks@${{ matrix.react-hooks }}"
        if: ${{ matrix.react-hooks > 0}}
      - run: node -pe "require('eslint/package.json').version"
        name: 'eslint version'
      - run: npm run pretravis
      - run: npm run prepublishOnly
      - run: npm run posttravis

  node:
    name: 'node 10+'
    needs: [base, prepublish-base, react, prepublish-react]
    runs-on: ubuntu-latest
    steps:
      - run: 'echo tests completed'