Skip to content

Bump eslint from 10.2.0 to 10.2.1 (#435) #216

Bump eslint from 10.2.0 to 10.2.1 (#435)

Bump eslint from 10.2.0 to 10.2.1 (#435) #216

Workflow file for this run

name: Continues Integration
on:
pull_request:
push:
branches:
- main
tags:
- '*'
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Tests
run: npm test
- name: Build
run: npm run build