From a95c97b1610d329a617c0fb2c851e27a0b662f3d Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 30 Dec 2021 16:55:53 -0600 Subject: Update test.yml --- .github/workflows/test.yml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c51ec78..9514655 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,9 @@ on: [ push, pull_request ] jobs: - test: + build-and-test: runs-on: ubuntu-latest - name: Run tests + name: Build & run tests steps: - name: Checkout uses: actions/checkout@v2 @@ -11,26 +11,14 @@ jobs: with: node-version: '16.0.0' - run: npm install - + - name: Typescript compiler + uses: iCrawl/action-tsc@v1 - name: Run tests run: npm test - build: - runs-on: ubuntu-latest - name: Compile Typescript - needs: [ test ] - steps: - - name: Checkout - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '16.0.0' - - run: npm install - - name: Typescript compiler - uses: iCrawl/action-tsc@v1 automerge: - needs: [ build ] + needs: [ build-and-test ] runs-on: ubuntu-latest steps: - uses: fastify/github-action-merge-dependabot@v2.1.1 -- cgit