From 5a08d62e764ee87eb8e173288d4aac1436068365 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sat, 31 Jul 2021 13:29:31 +0200 Subject: [PATCH] Improve the CI workflow YAML file This makes it consistent with the GitHub Advanced Security file and, more importantly, ensures that all steps have a proper name for better visibility. --- .github/workflows/ci.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d23bc0d40..bc29fdf01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,14 +1,24 @@ name: CI on: [push, pull_request] jobs: - build: + test: + name: Test runs-on: ubuntu-latest + steps: - - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 + - name: Use Node.js 14 LTS uses: actions/setup-node@v1 with: node-version: 14.x - - run: npm install -g gulp-cli - - run: npm install - - run: npm test + + - name: Install Gulp + run: npm install -g gulp-cli + + - name: Install other dependencies + run: npm install + + - name: Run tests + run: npm test