From 952fc528c675738b2a4bfeac870ea5d3b6d7cb79 Mon Sep 17 00:00:00 2001 From: l4kr Date: Wed, 13 Sep 2023 14:48:55 +0200 Subject: [PATCH] acid testing --- .github/workflows/futon-deploy.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/futon-deploy.yaml b/.github/workflows/futon-deploy.yaml index 7c47268..f038d9e 100644 --- a/.github/workflows/futon-deploy.yaml +++ b/.github/workflows/futon-deploy.yaml @@ -6,20 +6,21 @@ on: types: [closed] branches: [main] jobs: - lint: + run-linters: + name: Run linters runs-on: "ubuntu-latest" steps: - name: Checkout code uses: actions/checkout@v4 - name: install Node.js - uses: actions/setup-node@v3 - with: node-version:18 + uses: actions/setup-node@v1 + with: node-version:12 - - name: Install dependencies - run: npm install + - name: Instal l dependencies + run: 'npm ci' - - name: Lint with + - name: run linters uses: wearerequired/lint-action@v2 with: eslint: true