Skip to content

Commit

Permalink
[CONFIG] Node script for github-actions.
Browse files Browse the repository at this point in the history
* Split in 2: One for Coverage, the another to run multi-version/multi-OS tests.
* Node current version updated to 22.x.
  • Loading branch information
Gonzalo Diaz committed May 9, 2024
1 parent af9849b commit c05bf1d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 15 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/node-coverage.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Node.js CI Coverage

on:
push:
branches: [ "main", "develop", "feature/*" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
os: [
"ubuntu-latest"
]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- name: Checkout repository
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci --verbose

- name: Lint
run: npm run lint

- name: Run the tests
run: npm test -- --coverage

- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
18 changes: 3 additions & 15 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: Node.js CI Tests

on:
push:
Expand All @@ -18,7 +18,7 @@ jobs:
"ubuntu-latest",
"macOS-latest"
]
node-version: [18.x, 19.x, 20.x]
node-version: [19.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -37,16 +37,4 @@ jobs:
run: npm run lint

- name: Run the tests
run: npm test -- --coverage

- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: npm test

0 comments on commit c05bf1d

Please sign in to comment.