From d472cbe31b9e7eaf52b5ab9263250e1f36f1ca48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=20G=C3=B3mez?= Date: Mon, 2 Sep 2024 16:39:54 +0200 Subject: [PATCH] chore: upgrade eslint codely config --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb8232d..7e0d211 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,15 @@ jobs: name: 🚀 Lint and test timeout-minutes: 5 steps: + - name: 👍 Checkout uses: actions/checkout@v2 + - name: ❇️ Setup Node.js + - uses: actions/setup-node@v4 + with: + node-version: 20 + - name: 📦 Cache node modules uses: actions/cache@v2 env: @@ -30,4 +36,4 @@ jobs: run: npm run lint - name: ✅ Run tests - run: npm run test \ No newline at end of file + run: npm run test