From 011224a62575940f259729d250906d43aaf0d473 Mon Sep 17 00:00:00 2001 From: John Conroy Date: Tue, 12 Jan 2021 15:44:41 -0500 Subject: [PATCH 1/2] Move testing to test.sh to be consistent with other projects --- test.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 test.sh diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..87c7f16 --- /dev/null +++ b/test.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +npm run lint +npm run test From cd20a96edeaa4f883a72a0b041f63923bdd15909 Mon Sep 17 00:00:00 2001 From: John Conroy Date: Tue, 12 Jan 2021 15:44:49 -0500 Subject: [PATCH 2/2] Update github actions --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b663c06..5f6a971 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: run: npm ci - name: Run tests - run: npm run test + run: ./test.sh