From 3e25d8a7ee64cb2ce860d923e59c39476400241f Mon Sep 17 00:00:00 2001 From: Ryan Hamblin <8798259+ryan-hamblin@users.noreply.github.com> Date: Wed, 23 Mar 2022 13:42:52 -0600 Subject: [PATCH] IDK that we need both cov and test but i reincluded test step --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7da691..cf884d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,21 @@ jobs: - name: Install dependencies run: npm install - run: npm run lint + test: + name: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - uses: actions/setup-node@v1 + with: + node-version: "12" + - run: cp .env.sample .env + - name: Install dependencies + run: npm install + - name: Run Tests + run: npm run coverage coverage: name: Test and publish test coverage # The OS on which the job will run