Skip to content

[CDX-398] Update Node version and packages #564

[CDX-398] Update Node version and packages

[CDX-398] Update Node version and packages #564

Workflow file for this run

name: Run lint
on:
pull_request:
branches:
- "**"
concurrency:
group: run-lint-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["22.18.0"]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint