aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2021-12-30 16:55:53 -0600
committerGitHub <noreply@github.com>2021-12-30 16:55:53 -0600
commita95c97b1610d329a617c0fb2c851e27a0b662f3d (patch)
tree46dd8ea5d6d36400b65501a091bebbd72e3336f5 /.github
parent2d4168ed9ca0b467c1f4b2208e9c4ed05f98107d (diff)
downloadskyblock-api-a95c97b1610d329a617c0fb2c851e27a0b662f3d.tar.gz
skyblock-api-a95c97b1610d329a617c0fb2c851e27a0b662f3d.tar.bz2
skyblock-api-a95c97b1610d329a617c0fb2c851e27a0b662f3d.zip
Update test.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml22
1 files changed, 5 insertions, 17 deletions
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