forked from mysticatea/eslint-utils
-
-
Notifications
You must be signed in to change notification settings - Fork 7
136 lines (118 loc) · 4.13 KB
/
ci.yml
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
name: CI
on:
push:
branches:
# default semantic-release branches
- +([0-9])?(.{+([0-9]),x}).x
- main
- next
- next-major
- beta
- alpha
pull_request:
schedule:
- cron: 0 0 * * 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write # to be able to publish a GitHub release
id-token: write # to enable use of OIDC for npm provenance
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
jobs:
lint:
name: ⬣ Lint
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📥 Install dependencies
run: npm install
- name: ▶️ Run lint script
run: npm run lint
test:
name:
🧪 Test (Node@${{ matrix.node }} - ESLint@${{ matrix.eslint }} - ${{
matrix.os }})
strategy:
matrix:
eslint: [8]
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 20, 22]
os: [ubuntu-latest]
include:
# On other platforms
- os: windows-latest
eslint: 8
node: 20
- os: macos-latest
eslint: 8
node: 20
# On old ESLint versions
- eslint: 7
node: 20
os: ubuntu-latest
- eslint: 6
node: 20
os: ubuntu-latest
# On the minimum supported ESLint/Node.js version
- eslint: 6.0.0
node: 12.22.0
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup Node v${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: 📥 Install dependencies
run: npm install
- name: 📥 Install ESLint v${{ matrix.eslint }}
run: npm install --save-dev eslint@${{ matrix.eslint }}
- name: 🏗 Build
run: npm run build
- name: ▶️ Run test script
run: npm run test
- name: ⬆️ Upload coverage report
uses: codecov/codecov-action@v4
release:
name: 🚀 Release
needs: [lint, test]
runs-on: ubuntu-latest
if: github.repository == 'eslint-community/eslint-utils' &&
contains('refs/heads/main,refs/heads/next,refs/heads/beta,refs/heads/alpha',
github.ref) && github.event_name == 'push'
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📥 Install dependencies
run: npm install
- name: 🏗 Build
run: npm run build
- name: 🚀 Release
uses: cycjimmy/semantic-release-action@v4
with:
semantic_version: 19
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'main',
'next',
'next-major',
{name: 'beta', prerelease: true},
{name: 'alpha', prerelease: true}
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}