Skip to content

Use ESLint and Stylelint to check for potential errors and enforce a consistent coding style #51

Use ESLint and Stylelint to check for potential errors and enforce a consistent coding style

Use ESLint and Stylelint to check for potential errors and enforce a consistent coding style #51

Workflow file for this run

name: Tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm run test