Update dependencies and swithc to node 22 #6
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
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: 22.9.0 | |
cache: 'npm' | |
- name: Install Modules | |
run: npm ci | |
- name: Install Cpplint | |
run: pip install cpplint | |
- name: Run Cpplint | |
run: | | |
node -e "require('addon-tools-raub').cpcpplint()" | |
cpplint --recursive ./src |