Skip to content

Commit

Permalink
Merge branch 'node-3d:master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
epessoa-i authored Jun 10, 2024
2 parents 0f30c00 + 9c1cbf7 commit 56e8a15
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 4 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Cpplint
defaults:
run:
shell: bash

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
eslint:
name: Cpplint
runs-on: ubuntu-22.04

steps:

- name: Fetch Repository
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.14.0
cache: 'npm'

- name: Install Modules
run: npm ci

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Install Cpplint
run: pip install cpplint

- name: Run Cpplint
run: |
node -e "require('addon-tools-raub').cpcpplint()"
cpplint --recursive ./src/cpp
2 changes: 1 addition & 1 deletion install.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ const { install } = require('addon-tools-raub');


const prefix = 'https://github.com/node-3d/segfault-raub/releases/download';
const tag = '2.2.0';
const tag = '2.3.0';

install(`${prefix}/${tag}`);
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"name": "segfault-raub",
"version": "2.2.0",
"version": "2.3.0",
"description": "Catches SIGSEGV and prints diagnostic information",
"main": "index.js",
"license": "MIT, BSD-3-Clause, BSD-2-Clause",
Expand Down

0 comments on commit 56e8a15

Please sign in to comment.