From beabc6ad8dcfdea227a22cc9898b6628eebb1fcc Mon Sep 17 00:00:00 2001 From: Ziggy Jonsson Date: Sat, 11 May 2024 15:54:52 -0400 Subject: [PATCH] only run on 18 --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cef8ef6..b647db8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,17 @@ on: workflow_dispatch: jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Linting with ESLint + uses: actions/setup-node@v3 + with: + node-version: 18.x + - run: npx eslint . + test: runs-on: ubuntu-latest