From 7994dd039a994fda8dfa74330f066fca53493908 Mon Sep 17 00:00:00 2001 From: Theo Pascoli Date: Fri, 24 Jan 2025 11:28:19 +0100 Subject: [PATCH] feat: lint fix --- .github/workflows/main.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8c9ff45814..2aa52bd665 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -167,7 +167,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 22.13.0 + - name: Verify Node.js version + run: node --version + - name: Install Node.js dependencies + run: npm install + working-directory: webapp - name: Cypress run uses: cypress-io/github-action@v6 with: - working-directory: ./webapp \ No newline at end of file + working-directory: webapp \ No newline at end of file