-
Notifications
You must be signed in to change notification settings - Fork 41
40 lines (37 loc) · 917 Bytes
/
node.js.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
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 12 * * *'
jobs:
build:
name: Run Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js 21
uses: actions/[email protected]
with:
node-version: 21
cache: 'npm'
- run: npm install
- run: npm test
sonarcloud:
name: Run SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 21
- name: SonarCloud Scan
uses: SonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}