Skip to content

Bump the npm-dependencies group with 13 updates #545

Bump the npm-dependencies group with 13 updates

Bump the npm-dependencies group with 13 updates #545

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 22.x] # https://nodejs.org/en/about/previous-releases
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.1.0
- uses: pre-commit/action@v3.0.1