Skip to content

Add gas sensor

Add gas sensor #219

Workflow file for this run

name: ESLint
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Validate code correctness
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci --ignore-scripts --audit=false
- name: Run ESLint
run: npm run lint