From 14e663c2c5673590ef1402fb0546887bb1ee0903 Mon Sep 17 00:00:00 2001 From: Mathias Schopmans Date: Tue, 5 Mar 2024 08:27:23 +0100 Subject: [PATCH] chore: remove superfluous `npm run lint` --- .github/workflows/main.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd966ac..bf95230 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,11 +9,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - uses: actions/setup-node@v3 - with: - node-version: 'lts/*' - - run: npm ci - - run: npm run lint - - run: npm run build - - run: if [ -n "$(git status --porcelain)" ]; then echo 'workspace is dirty after rebuilding' ; git status ; git diff ; exit 1 ; fi + - uses: actions/checkout@master + - uses: actions/setup-node@v4 + with: + node-version: "lts/*" + - run: npm ci + - run: npm run build + - run: if [ -n "$(git status --porcelain)" ]; then echo 'workspace is dirty after rebuilding' ; git status ; git diff ; exit 1 ; fi