diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-26 17:23:13 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-12-26 17:23:13 -0500 |
commit | 4990d33a22779b524ff6476bb05fcc21cad4eace (patch) | |
tree | ec47b4a5399e1102d9d94088769e62601014dcce /.github/workflows | |
parent | fc390ffc300334c396d9d06b0feaf8fbc6ed2814 (diff) | |
download | tanzanite-4990d33a22779b524ff6476bb05fcc21cad4eace.tar.gz tanzanite-4990d33a22779b524ff6476bb05fcc21cad4eace.tar.bz2 tanzanite-4990d33a22779b524ff6476bb05fcc21cad4eace.zip |
add dry run to tests
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/checks.yml | 6 |
1 files changed, 4 insertions, 2 deletions
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 |