-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from snypelife/cicd
CICD adjustments
- Loading branch information
Showing
5 changed files
with
86 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Pull Request | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20.x, 22.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
env: | ||
MOCHA_REPORTER: mocha-ctrf-json-reporter | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: | | ||
FORCE_COLOR=true npm test -- \ | ||
--reporter ./mocha-ctrf-spec-reporter.js \ | ||
--reporter-option outputFile=ctrf-report-node-${{ matrix.node-version }}.json | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ctrf-report-node-${{ matrix.node-version }} | ||
path: ctrf/*.json | ||
|
||
test-results: | ||
needs: [test] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: ctrf-report-node-20.x | ||
- name: Run CTRF annotations | ||
run: npx --yes github-actions-ctrf summary ctrf-report-node-20.x.json | ||
if: always() | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use node.js 20.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const mocha = require('mocha') | ||
const Ctrf = require('mocha-ctrf-json-reporter') | ||
const Spec = mocha.reporters.Spec | ||
const Base = mocha.reporters.Base | ||
|
||
function CtrfSpecReporter (runner, options) { | ||
Base.call(this, runner, options) | ||
this._CtrfReporter = new Ctrf(runner, options) | ||
this._specReporter = new Spec(runner, options) | ||
return this | ||
} | ||
CtrfSpecReporter.prototype = Base.prototype | ||
|
||
module.exports = CtrfSpecReporter |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters