From 952fc528c675738b2a4bfeac870ea5d3b6d7cb79 Mon Sep 17 00:00:00 2001 From: l4kr Date: Wed, 13 Sep 2023 14:48:55 +0200 Subject: [PATCH 1/2] 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 -- 2.45.2 From b16cc1ad792ab0674bfc7d7d965048c99a28e89a Mon Sep 17 00:00:00 2001 From: l4kr Date: Wed, 13 Sep 2023 14:51:42 +0200 Subject: [PATCH 2/2] acid testing --- .github/workflows/futon-deploy.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/futon-deploy.yaml b/.github/workflows/futon-deploy.yaml index f038d9e..e8ae15a 100644 --- a/.github/workflows/futon-deploy.yaml +++ b/.github/workflows/futon-deploy.yaml @@ -15,9 +15,10 @@ jobs: - name: install Node.js uses: actions/setup-node@v1 - with: node-version:12 + with: + node-version: 12 - - name: Instal l dependencies + - name: Install ependencies run: 'npm ci' - name: run linters -- 2.45.2