-
-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (48 loc) · 1.33 KB
/
master.yml
File metadata and controls
57 lines (48 loc) · 1.33 KB
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
name: Master CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-scan:
name: SonarCloud Scan
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
- run: npm install
- run: npm run lint
- run: npm test
env:
SWITCHER_API_KEY: ${{ secrets.SWITCHER_API_KEY }}
- name: SonarCloud Scan
uses: sonarsource/sonarqube-scan-action@v7.0.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
if: env.SONAR_TOKEN != ''
build-test:
name: Build & Test - Node ${{ matrix.node-version }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x, 22.x, 24.x]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: actions/checkout@v6
- name: Build & Test with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
SWITCHER_API_KEY: ${{ secrets.SWITCHER_API_KEY }}