From 00b8e77dae3d5c875c4398f424321038ec243d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nj=C3=A5l=20Telst=C3=B8?= Date: Fri, 20 Oct 2023 10:41:28 +0200 Subject: [PATCH] Eslint github action syntax fix --- .github/workflows/integration.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2d5fbea..0783517 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -4,11 +4,11 @@ run-name: ${{ github.actor }} Frontend Integration on: [push] jobs: run-eslint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '18' - - run: npm install - - run: eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: '18' + - run: npm install + - run: eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0