chore: remove superfluous npm run lint

This commit is contained in:
Mathias Schopmans
2024-03-05 08:27:23 +01:00
committed by Mathias Schopmans
parent e1386c0385
commit 14e663c2c5

View File

@@ -9,11 +9,10 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- uses: actions/setup-node@v3 - uses: actions/setup-node@v4
with: with:
node-version: 'lts/*' node-version: "lts/*"
- run: npm ci - run: npm ci
- run: npm run lint - run: npm run build
- run: npm run build - run: if [ -n "$(git status --porcelain)" ]; then echo 'workspace is dirty after rebuilding' ; git status ; git diff ; exit 1 ; fi
- run: if [ -n "$(git status --porcelain)" ]; then echo 'workspace is dirty after rebuilding' ; git status ; git diff ; exit 1 ; fi