From 5ee92d7519e1d2b3232dfadc6008ec042965079f Mon Sep 17 00:00:00 2001 From: Flavio Corpa Date: Thu, 18 Jul 2024 10:27:39 +0200 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 11 +---------- package.json | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d32e0f9..7ada984 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,17 +45,8 @@ jobs: - name: npm ci install run: npm ci - - name: elm make - run: npx --no-install elm make src/**/*.elm --output=/dev/null - - - name: elm-test + - name: run make, format, tests (see package.json) run: npm test - - name: elm-review - run: npm run review - - - name: elm-format - run: npx --no-install elm-format --validate src tests - - name: build run: npm run build diff --git a/package.json b/package.json index d3d1e26..1d29bb9 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "test": "npm-run-all --print-name --silent --sequential test:make test:format test:run", "test:make": "elm make", - "test:format": "elm-format --validate", + "test:format": "elm-format --validate src tests", "test:run": "elm-test-rs", "postinstall": "elm-tooling install" },