mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-14 22:53:13 +01:00
Théo LUDWIG
d9536865d8
Fixes #2 BREAKING CHANGE: peerDependencies: `eslint@^9.12.0` `eslint-plugin-promise@^7.1.0` `eslint-plugin-unicorn@^56.0.0` `globals@^15.10.0` `typescript-eslint@^8.8.0` BREAKING CHANGE: Node.js >= 20.9.0
26 lines
456 B
YAML
26 lines
456 B
YAML
name: "Test"
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4.2.0"
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@v4.0.4"
|
|
with:
|
|
node-version: "22.x"
|
|
cache: "npm"
|
|
|
|
- name: "Install dependencies"
|
|
run: "npm clean-install"
|
|
|
|
- name: "Test"
|
|
run: "node --run test"
|