1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2025-09-11 23:09:27 +02:00
Files
eslint-config-conventions/.github/workflows/test.yml
Théo LUDWIG 2d8260472a fix!: usage of eslint defineConfig()
Ref: https://typescript-eslint.io/packages/typescript-eslint/#migrating-to-defineconfig

BREAKING CHANGE: peerDependencies:
`eslint@^9.22.0`
`eslint-plugin-unicorn@^61.0.0`
2025-09-11 19:48:20 +02:00

26 lines
457 B
YAML

name: "Test"
on:
push:
branches: [develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v5.0.0"
- name: "Setup Node.js"
uses: "actions/setup-node@v5.0.0"
with:
node-version: "lts/*"
cache: "npm"
- name: "Install dependencies"
run: "npm clean-install"
- name: "Test"
run: "node --run test"