From 4990d33a22779b524ff6476bb05fcc21cad4eace Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 26 Dec 2021 17:23:13 -0500 Subject: add dry run to tests --- .github/workflows/checks.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github/workflows/checks.yml') diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index b7bcc00..a35da22 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch] jobs: test: - name: ESLint and Build + name: Test runs-on: ubuntu-latest steps: - name: Checkout Repo @@ -24,7 +24,9 @@ jobs: - name: ESLint run: yarn lint - name: Build - run: yarn build:tsc:no-emit + run: yarn build:tsc + - name: Dry Run + run: yarn start:dry formatting: name: Formatting -- cgit