Skip to content

Bump the patch-and-minor-dependencies group with 3 updates #234

Bump the patch-and-minor-dependencies group with 3 updates

Bump the patch-and-minor-dependencies group with 3 updates #234

Workflow file for this run

name: "Lint and Test"
on:
push:
branches: [ "main" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "main" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test