Skip to content

chore: Re-enable the curly rule. #254

chore: Re-enable the curly rule.

chore: Re-enable the curly rule. #254

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
- "[0-9]*"
paths:
- addon/**
- scripts/**
- babel.config.cjs
- package*.json
- webpack.config.cjs
- .github/workflows/unit.yml
pull_request:
branches:
- main
- "[0-9]*"
paths:
- addon/**
- scripts/**
- babel.config.cjs
- package*.json
- webpack.config.cjs
- .github/workflows/unit.yml
jobs:
eslint:
name: unittests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: 22.4.x
- name: Install dependencies
run: npm ci --force
- name: Run node tests
run: npm run test:node